pub enum BusEvent<Owner, ChannelId, MSG> {
Broadcast(u16, MSG),
Channel(Owner, ChannelId, MSG),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<Owner, ChannelId, MSG> Freeze for BusEvent<Owner, ChannelId, MSG>
impl<Owner, ChannelId, MSG> RefUnwindSafe for BusEvent<Owner, ChannelId, MSG>
impl<Owner, ChannelId, MSG> Send for BusEvent<Owner, ChannelId, MSG>
impl<Owner, ChannelId, MSG> Sync for BusEvent<Owner, ChannelId, MSG>
impl<Owner, ChannelId, MSG> Unpin for BusEvent<Owner, ChannelId, MSG>
impl<Owner, ChannelId, MSG> UnwindSafe for BusEvent<Owner, ChannelId, MSG>
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