2024-01-17 07:22:15 +00:00
|
|
|
use imap_codec::imap_types::command::Command;
|
2024-02-22 16:30:40 +00:00
|
|
|
use imap_codec::imap_types::core::Tag;
|
2024-01-17 07:22:15 +00:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Request {
|
|
|
|
ImapCommand(Command<'static>),
|
2024-02-22 16:30:40 +00:00
|
|
|
IdleStart(Tag<'static>),
|
|
|
|
IdlePoll,
|
2024-01-17 07:22:15 +00:00
|
|
|
}
|