[][src]Struct tcp_typed::Connected

pub struct Connected { /* fields omitted */ }

Methods

impl Connected[src]

pub fn poll(self, executor: &impl Notifier) -> ConnectedPoll[src]

pub fn recv_avail(&self) -> usize[src]

#[must_use] pub fn recv<'a>(
    &'a mut self,
    executor: &'a impl Notifier
) -> Option<impl FnOnce() -> u8 + 'a>
[src]

pub fn send_avail(&self) -> usize[src]

#[must_use] pub fn send<'a>(
    &'a mut self,
    executor: &'a impl Notifier
) -> Option<impl FnOnce(u8) + 'a>
[src]

pub fn close(self, executor: &impl Notifier) -> LocalClosedPoll[src]

pub fn kill(self, executor: &impl Notifier)[src]

Trait Implementations

impl From<Connected> for Connection[src]

impl Drop for Connected[src]

impl Debug for Connected[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self