Struct relm::StreamHandle[][src]

pub struct StreamHandle<MSG> { /* fields omitted */ }

Handle to a EventStream to emit messages.

Implementations

impl<MSG> StreamHandle<MSG>[src]

pub fn stream(&self) -> Self[src]

Same as clone(). Useful for the macro relm_observer_new.

pub fn emit(&self, msg: MSG)[src]

Send the event message to the stream and the observers.

pub fn lock(&self) -> Lock<MSG>[src]

Lock the stream (don't emit message) until the Lock goes out of scope.

pub fn observe<CALLBACK: Fn(&MSG) + 'static>(&self, callback: CALLBACK)[src]

Add an observer to the event stream. This callback will be called every time a message is emmited.

Trait Implementations

impl<MSG> Clone for StreamHandle<MSG>[src]

Auto Trait Implementations

impl<MSG> !RefUnwindSafe for StreamHandle<MSG>[src]

impl<MSG> !Send for StreamHandle<MSG>[src]

impl<MSG> !Sync for StreamHandle<MSG>[src]

impl<MSG> Unpin for StreamHandle<MSG>[src]

impl<MSG> !UnwindSafe for StreamHandle<MSG>[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> 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.