pub enum EventOrder {
Unchanged,
Interleaved,
}Expand description
Reorder the events according to their firing times
Variants§
Unchanged
Pass on the events in the order they’re received in
Interleaved
Reorder the events according to their firing times
Trait Implementations§
Source§impl Clone for EventOrder
impl Clone for EventOrder
Source§fn clone(&self) -> EventOrder
fn clone(&self) -> EventOrder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EventOrder
Source§impl Debug for EventOrder
impl Debug for EventOrder
Source§impl Default for EventOrder
impl Default for EventOrder
Source§fn default() -> EventOrder
fn default() -> EventOrder
Returns the “default value” for a type. Read more
Source§impl PartialEq for EventOrder
impl PartialEq for EventOrder
Source§fn eq(&self, other: &EventOrder) -> bool
fn eq(&self, other: &EventOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EventOrder
Auto Trait Implementations§
impl Freeze for EventOrder
impl RefUnwindSafe for EventOrder
impl Send for EventOrder
impl Sync for EventOrder
impl Unpin for EventOrder
impl UnsafeUnpin for EventOrder
impl UnwindSafe for EventOrder
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