[][src]Struct carrier::endpoint::Stream

pub struct Stream { /* fields omitted */ }

Methods

impl Stream[src]

pub fn send<M: Into<Vec<u8>>>(&mut self, m: M)[src]

pub fn fragmented_send<M: Into<Vec<u8>>>(&mut self, m: M)[src]

pub fn ph_message<M: Message>(&mut self, m: M)[src]

Deprecated since 0.9.0:

carrier supports automatic fragmentation now

pub fn message<M: Message>(&mut self, m: M)[src]

pub fn indicator(&self) -> &'static str[src]

pub fn rtt(&self) -> u64[src]

pub fn window(&self) -> (usize, usize, u64)[src]

Trait Implementations

impl Clone for Stream[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Future<Vec<u8>> for Stream[src]

Auto Trait Implementations

impl !Sync for Stream

impl !Send for Stream

impl Unpin for Stream

impl !RefUnwindSafe for Stream

impl !UnwindSafe for Stream

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> Borrow<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

impl<R, X> Future<R> for X where
    X: Generator<Yield = Again, Return = R> + Unpin
[src]