[][src]Struct sp_utils::mpsc::TracingUnboundedReceiver

pub struct TracingUnboundedReceiver<T>(_, _);

Wrapper Type around UnboundedReceiver that decreases the global measure when a message is polled

Implementations

impl<T> TracingUnboundedReceiver<T>[src]

pub fn close(&mut self)[src]

Proxy function to mpsc::UnboundedReceiver that consumes all messages first and updates the counter

pub fn try_next(&mut self) -> Result<Option<T>, TryRecvError>[src]

Proxy function to mpsc::UnboundedReceiver that discounts the messages taken out

Trait Implementations

impl<T: Debug> Debug for TracingUnboundedReceiver<T>[src]

impl<T> Drop for TracingUnboundedReceiver<T>[src]

impl<T> FusedStream for TracingUnboundedReceiver<T>[src]

impl<T> Stream for TracingUnboundedReceiver<T>[src]

type Item = T

Values yielded by the stream.

impl<T> Unpin for TracingUnboundedReceiver<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for TracingUnboundedReceiver<T>[src]

impl<T> Send for TracingUnboundedReceiver<T> where
    T: Send
[src]

impl<T> Sync for TracingUnboundedReceiver<T> where
    T: Send
[src]

impl<T> !UnwindSafe for TracingUnboundedReceiver<T>[src]

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> StreamExt for T where
    T: Stream + ?Sized

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<S, T, E> TryStream for S where
    S: Stream<Item = Result<T, E>> + ?Sized
[src]

type Ok = T

The type of successful values yielded by this future

type Error = E

The type of failures yielded by this future

impl<S> TryStreamExt for S where
    S: TryStream + ?Sized