pub enum BaselineError {
OutOfOrder {
last_tick: SnapshotTick,
new_tick: SnapshotTick,
},
}Expand description
Errors that can occur when inserting into the baseline store.
Variants§
Trait Implementations§
Source§impl Clone for BaselineError
impl Clone for BaselineError
Source§fn clone(&self) -> BaselineError
fn clone(&self) -> BaselineError
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 BaselineError
impl Debug for BaselineError
Source§impl PartialEq for BaselineError
impl PartialEq for BaselineError
impl Copy for BaselineError
impl Eq for BaselineError
impl StructuralPartialEq for BaselineError
Auto Trait Implementations§
impl Freeze for BaselineError
impl RefUnwindSafe for BaselineError
impl Send for BaselineError
impl Sync for BaselineError
impl Unpin for BaselineError
impl UnwindSafe for BaselineError
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