pub enum EventKind {
Custom(u32),
HandoffPrepare {
entity_id: EntityId,
},
HandoffCommit {
entity_id: EntityId,
owner_epoch: OwnerEpoch,
},
}Expand description
Core event kind understood by the runtime.
Variants§
Custom(u32)
User-defined event kind id.
HandoffPrepare
Prepare a two-phase entity handoff.
HandoffCommit
Commit a two-phase entity handoff.
Trait Implementations§
impl Eq for EventKind
impl StructuralPartialEq for EventKind
Auto Trait Implementations§
impl Freeze for EventKind
impl RefUnwindSafe for EventKind
impl Send for EventKind
impl Sync for EventKind
impl Unpin for EventKind
impl UnsafeUnpin for EventKind
impl UnwindSafe for EventKind
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