pub struct EventId<E: Event> {
pub id: usize,
/* private fields */
}
Expand description
An EventId
uniquely identifies an event stored in a specific World
.
An EventId
can among other things be used to trace the flow of an event from the point it was
sent to the point it was processed. EventId
s increase monotonically by send order.
Fields§
§id: usize
Uniquely identifies the event associated with this ID.
Trait Implementations§
Source§impl<E: Event> Ord for EventId<E>
impl<E: Event> Ord for EventId<E>
Source§impl<E: Event> PartialOrd for EventId<E>
impl<E: Event> PartialOrd for EventId<E>
impl<E: Event> Copy for EventId<E>
impl<E: Event> Eq for EventId<E>
Auto Trait Implementations§
impl<E> Freeze for EventId<E>
impl<E> RefUnwindSafe for EventId<E>where
E: RefUnwindSafe,
impl<E> Send for EventId<E>
impl<E> Sync for EventId<E>
impl<E> Unpin for EventId<E>where
E: Unpin,
impl<E> UnwindSafe for EventId<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.