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