pub enum HashRingError {
IllegalArgument(String),
InvalidValue(String),
StorageLock(String),
NotFound(String),
}Variants§
Trait Implementations§
Source§impl Debug for HashRingError
impl Debug for HashRingError
Source§impl Display for HashRingError
impl Display for HashRingError
Source§impl Error for HashRingError
impl Error for HashRingError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for HashRingError
impl PartialEq for HashRingError
impl Eq for HashRingError
impl StructuralPartialEq for HashRingError
Auto Trait Implementations§
impl Freeze for HashRingError
impl RefUnwindSafe for HashRingError
impl Send for HashRingError
impl Sync for HashRingError
impl Unpin for HashRingError
impl UnwindSafe for HashRingError
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