[][src]Struct melib::backends::nntp::connection::NntpStream

pub struct NntpStream {
    pub stream: AsyncWrapper<Connection>,
    pub extension_use: NntpExtensionUse,
    pub current_mailbox: MailboxSelection,
}

Fields

stream: AsyncWrapper<Connection>extension_use: NntpExtensionUsecurrent_mailbox: MailboxSelection

Implementations

impl NntpStream[src]

pub async fn new_connection<'_>(
    server_conf: &'_ NntpServerConf
) -> Result<(HashSet<String>, NntpStream)>
[src]

pub async fn read_response<'_, '_, '_, '_>(
    &'_ mut self,
    ret: &'_ mut String,
    is_multiline: bool,
    expected_reply_code: &'_ [&'_ str]
) -> Result<()>
[src]

pub async fn read_lines<'_, '_, '_, '_>(
    &'_ mut self,
    ret: &'_ mut String,
    is_multiline: bool,
    expected_reply_code: &'_ [&'_ str]
) -> Result<()>
[src]

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

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

Trait Implementations

impl Debug for NntpStream[src]

Auto Trait Implementations

impl RefUnwindSafe for NntpStream

impl Send for NntpStream

impl Sync for NntpStream

impl Unpin for NntpStream

impl UnwindSafe for NntpStream

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]