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