pub enum TimeWheelError {
InvalidBucketIndex {
index: usize,
buckets: usize,
},
}Expand description
Errors produced by timer utility/query methods.
Variants§
Trait Implementations§
Source§impl Clone for TimeWheelError
impl Clone for TimeWheelError
Source§fn clone(&self) -> TimeWheelError
fn clone(&self) -> TimeWheelError
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 TimeWheelError
impl Debug for TimeWheelError
Source§impl PartialEq for TimeWheelError
impl PartialEq for TimeWheelError
impl Copy for TimeWheelError
impl Eq for TimeWheelError
impl StructuralPartialEq for TimeWheelError
Auto Trait Implementations§
impl Freeze for TimeWheelError
impl RefUnwindSafe for TimeWheelError
impl Send for TimeWheelError
impl Sync for TimeWheelError
impl Unpin for TimeWheelError
impl UnwindSafe for TimeWheelError
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