Trait imap::ImapConnection

source ·
pub trait ImapConnection: Read + Write + Send + SetReadTimeout + Sealed { }
Expand description

Imap connection trait of a read/write stream

Trait Implementations§

source§

impl Debug for dyn ImapConnection

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§

source§

impl<T> ImapConnection for T
where T: Read + Write + Send + SetReadTimeout,