[][src]Struct melib::backends::imap::connection::ImapStream

pub struct ImapStream {
    pub cmd_id: usize,
    pub stream: AsyncWrapper<Connection>,
    pub protocol: ImapProtocol,
    pub current_mailbox: MailboxSelection,
    pub timeout: Option<Duration>,
}

Fields

cmd_id: usizestream: AsyncWrapper<Connection>protocol: ImapProtocolcurrent_mailbox: MailboxSelectiontimeout: Option<Duration>

Implementations

impl ImapStream[src]

pub async fn new_connection<'_>(
    server_conf: &'_ ImapServerConf
) -> Result<(HashSet<Vec<u8>>, ImapStream)>
[src]

pub async fn read_response<'_, '_>(
    &'_ mut self,
    ret: &'_ mut Vec<u8>
) -> Result<()>
[src]

pub async fn read_lines<'_, '_, '_>(
    &'_ mut self,
    ret: &'_ mut Vec<u8>,
    termination_string: &'_ [u8],
    keep_termination_string: bool
) -> Result<()>
[src]

pub async fn wait_for_continuation_request<'_>(&'_ mut self) -> Result<()>[src]

pub async fn send_command<'_, '_>(&'_ mut self, command: &'_ [u8]) -> Result<()>[src]

pub async fn send_literal<'_, '_>(&'_ mut self, data: &'_ [u8]) -> Result<()>[src]

pub async fn send_raw<'_, '_>(&'_ mut self, raw: &'_ [u8]) -> Result<()>[src]

Trait Implementations

impl Debug for ImapStream[src]

Auto Trait Implementations

impl RefUnwindSafe for ImapStream

impl Send for ImapStream

impl Sync for ImapStream

impl Unpin for ImapStream

impl UnwindSafe for ImapStream

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]