#[repr(u8)]pub enum BytellError {
AllocationError = 0,
TableTooBigError = 1,
}Expand description
Represents possible errors that can occur when dealing with the bytell hash table.
Variants§
Trait Implementations§
Source§impl Clone for BytellError
impl Clone for BytellError
Source§fn clone(&self) -> BytellError
fn clone(&self) -> BytellError
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 BytellError
impl Debug for BytellError
Source§impl From<AllocationError> for BytellError
impl From<AllocationError> for BytellError
Source§impl From<BytellError> for DefaultHashTableError
impl From<BytellError> for DefaultHashTableError
Source§fn from(error: BytellError) -> Self
fn from(error: BytellError) -> Self
Converts to this type from the input type.
Source§impl Hash for BytellError
impl Hash for BytellError
Source§impl PartialEq for BytellError
impl PartialEq for BytellError
impl Copy for BytellError
impl Eq for BytellError
impl StructuralPartialEq for BytellError
Auto Trait Implementations§
impl Freeze for BytellError
impl RefUnwindSafe for BytellError
impl Send for BytellError
impl Sync for BytellError
impl Unpin for BytellError
impl UnsafeUnpin for BytellError
impl UnwindSafe for BytellError
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