[][src]Struct lifeline::subscription::Receiver

pub struct Receiver<T> { /* fields omitted */ }

A receiver which provides SubscriptionState messages. Returns immediately on the first recv(), and then waits for subscription updates. Also provides .contains(id) and .get_identifier(id) utility methods, which are non-blocking.

Implementations

impl<T> Receiver<T>[src]

pub fn new(rx: Receiver<SubscriptionState<T>>) -> Self[src]

impl<T: Hash + Eq> Receiver<T>[src]

pub fn contains(&self, id: &T) -> bool[src]

Returns true if the subscription channel is currently subscribed to the given identifier

pub fn get_identifier(&self, id: &T) -> Option<usize>[src]

Returns a unique index for the subscription on the given identifier, or None if the channel is not subscribed to the identifier.

impl<T: Clone> Receiver<T>[src]

pub async fn recv<'_>(&'_ mut self) -> Option<SubscriptionState<T>>[src]

Trait Implementations

impl<T> Clone for Receiver<T>[src]

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

impl<T> Receiver<SubscriptionState<T>> for Receiver<T> where
    T: Clone + Debug + Send + Sync
[src]

impl<T: Send + 'static> Storage for Receiver<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Receiver<T>

impl<T> Send for Receiver<T> where
    T: Send + Sync

impl<T> Sync for Receiver<T> where
    T: Send + Sync

impl<T> Unpin for Receiver<T>

impl<T> !UnwindSafe for Receiver<T>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.