pub trait AddRawMessageWithFlags: Send + Sync {
    // Required method
    fn add_raw_message_with_flags<'life0, 'life1, 'life2, 'life3, 'async_trait>(
        &'life0 self,
        folder: &'life1 str,
        raw_msg: &'life2 [u8],
        flags: &'life3 Flags
    ) -> Pin<Box<dyn Future<Output = Result<SingleId>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait;

    // Provided method
    fn add_raw_message_with_flag<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        folder: &'life1 str,
        raw_msg: &'life2 [u8],
        flag: Flag
    ) -> Pin<Box<dyn Future<Output = Result<SingleId>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait { ... }
}

Required Methods§

source

fn add_raw_message_with_flags<'life0, 'life1, 'life2, 'life3, 'async_trait>( &'life0 self, folder: &'life1 str, raw_msg: &'life2 [u8], flags: &'life3 Flags ) -> Pin<Box<dyn Future<Output = Result<SingleId>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait,

Add the given raw email message with the given flags to the given folder.

Provided Methods§

source

fn add_raw_message_with_flag<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, folder: &'life1 str, raw_msg: &'life2 [u8], flag: Flag ) -> Pin<Box<dyn Future<Output = Result<SingleId>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Add the given raw email message with the given flag to the given folder.

Implementors§