pub enum WalRecordType {
Put = 1,
Delete = 2,
Noop = 3,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for WalRecordType
impl Clone for WalRecordType
Source§fn clone(&self) -> WalRecordType
fn clone(&self) -> WalRecordType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for WalRecordType
Source§impl Debug for WalRecordType
impl Debug for WalRecordType
Source§impl Display for WalRecordType
impl Display for WalRecordType
impl Eq for WalRecordType
Source§impl PartialEq for WalRecordType
impl PartialEq for WalRecordType
Source§fn eq(&self, other: &WalRecordType) -> bool
fn eq(&self, other: &WalRecordType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WalRecordType
Auto Trait Implementations§
impl Freeze for WalRecordType
impl RefUnwindSafe for WalRecordType
impl Send for WalRecordType
impl Sync for WalRecordType
impl Unpin for WalRecordType
impl UnsafeUnpin for WalRecordType
impl UnwindSafe for WalRecordType
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