pub enum SimulationClockError {
InvalidTickDuration,
TickOverflow,
NonFiniteElapsed,
}Variants§
Trait Implementations§
Source§impl Clone for SimulationClockError
impl Clone for SimulationClockError
Source§fn clone(&self) -> SimulationClockError
fn clone(&self) -> SimulationClockError
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 moreSource§impl Debug for SimulationClockError
impl Debug for SimulationClockError
Source§impl PartialEq for SimulationClockError
impl PartialEq for SimulationClockError
Source§fn eq(&self, other: &SimulationClockError) -> bool
fn eq(&self, other: &SimulationClockError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SimulationClockError
impl Eq for SimulationClockError
impl StructuralPartialEq for SimulationClockError
Auto Trait Implementations§
impl Freeze for SimulationClockError
impl RefUnwindSafe for SimulationClockError
impl Send for SimulationClockError
impl Sync for SimulationClockError
impl Unpin for SimulationClockError
impl UnsafeUnpin for SimulationClockError
impl UnwindSafe for SimulationClockError
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