pub enum BucketEntryType {
METAENTRY = -1,
LIVEENTRY = 0,
DEADENTRY = 1,
INITENTRY = 2,
}Variants§
Trait Implementations§
Source§impl Clone for BucketEntryType
impl Clone for BucketEntryType
Source§fn clone(&self) -> BucketEntryType
fn clone(&self) -> BucketEntryType
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 BucketEntryType
impl Debug for BucketEntryType
Source§impl<Out: Write> Pack<Out> for BucketEntryType
impl<Out: Write> Pack<Out> for BucketEntryType
Source§impl PartialEq for BucketEntryType
impl PartialEq for BucketEntryType
Source§impl<In: Read> Unpack<In> for BucketEntryType
impl<In: Read> Unpack<In> for BucketEntryType
impl Copy for BucketEntryType
impl Eq for BucketEntryType
impl StructuralPartialEq for BucketEntryType
Auto Trait Implementations§
impl Freeze for BucketEntryType
impl RefUnwindSafe for BucketEntryType
impl Send for BucketEntryType
impl Sync for BucketEntryType
impl Unpin for BucketEntryType
impl UnwindSafe for BucketEntryType
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