pub struct DomainEventBus<E>(/* private fields */);Expand description
Public handle to the bus pattern.
Implementations§
Source§impl<E: Clone + Send + 'static> DomainEventBus<E>
impl<E: Clone + Send + 'static> DomainEventBus<E>
pub fn builder() -> BusBuilder<E>
Auto Trait Implementations§
impl<E> Freeze for DomainEventBus<E>
impl<E> RefUnwindSafe for DomainEventBus<E>where
E: RefUnwindSafe,
impl<E> Send for DomainEventBus<E>where
E: Send,
impl<E> Sync for DomainEventBus<E>where
E: Sync,
impl<E> Unpin for DomainEventBus<E>where
E: Unpin,
impl<E> UnsafeUnpin for DomainEventBus<E>
impl<E> UnwindSafe for DomainEventBus<E>where
E: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more