[][src]Struct event_brust::EventBus

pub struct EventBus<'a> {
    pub events: HashMap<&'a str, (&'a str, Box<dyn Fn(&mut dyn Any)>)>,
}

Fields

events: HashMap<&'a str, (&'a str, Box<dyn Fn(&mut dyn Any)>)>

Methods

impl<'a> EventBus<'a>[src]

pub fn subscribe<H, T>(
    &mut self,
    subscription_id: &'a str,
    kind: &'a str,
    handle: H
) where
    H: Fn(&mut T) + 'static,
    T: Any
[src]

pub fn unsubscribe(
    &mut self,
    subscription_id: &str
) -> Option<(&str, Box<dyn Fn(&mut dyn Any)>)>
[src]

pub fn unsubscribe_every(&mut self, kind: &str)[src]

pub fn publish(&self, kind: &str, data: &mut dyn Any)[src]

pub fn publish_single(&self, subscription_id: &str, data: &mut dyn Any) -> bool[src]

Trait Implementations

impl<'a> Default for EventBus<'a>[src]

impl<'a> Sync for EventBus<'a>[src]

impl<'a> Send for EventBus<'a>[src]

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]