Skip to main content

FlushSender

Struct FlushSender 

Source
pub struct FlushSender<Side: SideData> { /* private fields */ }
Expand description

Notification that receiving data may have changed the state of the associated SendTraffic

The caller may wish to check whether there is any IO necessary on the send side. If it does not, and ignores this state, any pending new data to send will be included in the next attempt to send data.

Implementations§

Source§

impl<Side: SideData> FlushSender<Side>

Source

pub fn into_next(self) -> ReceiveTrafficState<'static, Side>

Obtain the next receive-side state.

Auto Trait Implementations§

§

impl<Side> !RefUnwindSafe for FlushSender<Side>

§

impl<Side> !UnwindSafe for FlushSender<Side>

§

impl<Side> Freeze for FlushSender<Side>
where <Side as Side>::State: Freeze,

§

impl<Side> Send for FlushSender<Side>
where <Side as Side>::State: Send,

§

impl<Side> Sync for FlushSender<Side>
where <Side as Side>::State: Sync,

§

impl<Side> Unpin for FlushSender<Side>
where <Side as Side>::State: Unpin,

§

impl<Side> UnsafeUnpin for FlushSender<Side>
where <Side as Side>::State: UnsafeUnpin,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.