blob: cff18a34634feb4f3db63bb7848b2642520bf8df (
plain) (
tree)
|
|
use imap_codec::imap_types::command::Command;
use imap_codec::imap_types::core::Tag;
#[derive(Debug)]
pub enum Request {
ImapCommand(Command<'static>),
IdleStart(Tag<'static>),
IdlePoll,
}
|