Enum medea_reactive::UniversalSubscriber[][src]

pub enum UniversalSubscriber<D> {
    When {
        sender: RefCell<Option<Sender<()>>>,
        assert_fn: Box<dyn Fn(&D) -> bool>,
    },
    Subscribe(UnboundedSender<D>),
}

Subscriber that implements subscribing and Whenable in Vec.

This structure should be wrapped into Vec.

Variants

When

Subscriber for Whenable.

Fields of When

sender: RefCell<Option<Sender<()>>>

[oneshot::Sender] with which Whenable::when’s Future will resolve.

assert_fn: Box<dyn Fn(&D) -> bool>

Function with which will be checked that Whenable::when’s Future should resolve.

Subscribe(UnboundedSender<D>)

Subscriber for data updates.

Trait Implementations

impl<D> Debug for UniversalSubscriber<D>[src]

Auto Trait Implementations

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, 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.