pub struct FlatEvent {
pub kind: FlatEventKind,
pub ids: Vec<EntityId>,
pub data: Option<String>,
}Expand description
An event with a flattened kind, ready for consumer-side matching.
Fields§
§kind: FlatEventKind§ids: Vec<EntityId>§data: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlatEvent
impl RefUnwindSafe for FlatEvent
impl Send for FlatEvent
impl Sync for FlatEvent
impl Unpin for FlatEvent
impl UnsafeUnpin for FlatEvent
impl UnwindSafe for FlatEvent
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