[][src]Trait keebrs::net::NetSendExt

pub trait NetSendExt<T>: NetSend<T> {
    fn send_to(&mut self, to: i8, msg: T) -> Send<'_, Self, Msg<T>>
    where
        Self: Unpin
, { ... }
fn broadcast(&mut self, msg: T) -> Send<'_, Self, Msg<T>>
    where
        Self: Unpin
, { ... }
fn poll_flush_unpin(
        &mut self,
        cx: &mut Context<'_>
    ) -> Poll<Result<(), Self::Error>>
    where
        Self: Unpin
, { ... }
fn poll_ready_unpin(
        &mut self,
        cx: &mut Context<'_>
    ) -> Poll<Result<(), Self::Error>>
    where
        Self: Unpin
, { ... } }

Provided methods

fn send_to(&mut self, to: i8, msg: T) -> Send<'_, Self, Msg<T>> where
    Self: Unpin

fn broadcast(&mut self, msg: T) -> Send<'_, Self, Msg<T>> where
    Self: Unpin

fn poll_flush_unpin(
    &mut self,
    cx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>> where
    Self: Unpin

fn poll_ready_unpin(
    &mut self,
    cx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>> where
    Self: Unpin

Loading content...

Implementors

impl<T, U> NetSendExt<T> for U where
    U: NetSend<T>, 
[src]

Loading content...