aboutsummaryrefslogblamecommitdiff
path: root/src/imap/request.rs
blob: cff18a34634feb4f3db63bb7848b2642520bf8df (plain) (tree)
1
2
3
4
5
6
7
8
9
                                             
                                      



                                  

                            
 
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,
}