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