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 copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§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
impl Copy for EventOrder
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 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