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