#[non_exhaustive]pub enum TimelineEventIndex {
Cast(usize),
Damage(usize),
Encounter(usize),
}Expand description
Insertion order for the event families merged into the representative timeline.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for TimelineEventIndex
impl Clone for TimelineEventIndex
Source§fn clone(&self) -> TimelineEventIndex
fn clone(&self) -> TimelineEventIndex
Returns a duplicate 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 TimelineEventIndex
impl Debug for TimelineEventIndex
Source§impl PartialEq for TimelineEventIndex
impl PartialEq for TimelineEventIndex
impl Copy for TimelineEventIndex
impl Eq for TimelineEventIndex
impl StructuralPartialEq for TimelineEventIndex
Auto Trait Implementations§
impl Freeze for TimelineEventIndex
impl RefUnwindSafe for TimelineEventIndex
impl Send for TimelineEventIndex
impl Sync for TimelineEventIndex
impl Unpin for TimelineEventIndex
impl UnsafeUnpin for TimelineEventIndex
impl UnwindSafe for TimelineEventIndex
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