pub enum ConsistentHashingError {
NodeAlreadyExists(String),
NodeDoesNotExist(String),
RingIsEmpty(String),
ZeroVirtualNodes(String),
UnchangedVirtualNodeCount(String),
}
Variants§
NodeAlreadyExists(String)
NodeDoesNotExist(String)
RingIsEmpty(String)
ZeroVirtualNodes(String)
UnchangedVirtualNodeCount(String)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConsistentHashingError
impl RefUnwindSafe for ConsistentHashingError
impl Send for ConsistentHashingError
impl Sync for ConsistentHashingError
impl Unpin for ConsistentHashingError
impl UnwindSafe for ConsistentHashingError
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