pub enum LedgerEntry<'a> {
Show 20 variants
AccountRoot(AccountRoot<'a>),
Amendments(Amendments<'a>),
AMM(AMM<'a>),
Bridge(Bridge<'a>),
Check(Check<'a>),
DepositPreauth(DepositPreauth<'a>),
DirectoryNode(DirectoryNode<'a>),
Escrow(Escrow<'a>),
FeeSettings(FeeSettings<'a>),
LedgerHashes(LedgerHashes<'a>),
NegativeUNL(NegativeUNL<'a>),
NFTokenOffer(NFTokenOffer<'a>),
NFTokenPage(NFTokenPage<'a>),
Offer(Offer<'a>),
PayChannel(PayChannel<'a>),
RippleState(RippleState<'a>),
SignerList(SignerList<'a>),
Ticket(Ticket<'a>),
XChainOwnedClaimID(XChainOwnedClaimID<'a>),
XChainOwnedCreateAccountClaimID(XChainOwnedCreateAccountClaimID<'a>),
}
Variants§
AccountRoot(AccountRoot<'a>)
Amendments(Amendments<'a>)
AMM(AMM<'a>)
Bridge(Bridge<'a>)
Check(Check<'a>)
DepositPreauth(DepositPreauth<'a>)
DirectoryNode(DirectoryNode<'a>)
Escrow(Escrow<'a>)
FeeSettings(FeeSettings<'a>)
LedgerHashes(LedgerHashes<'a>)
NegativeUNL(NegativeUNL<'a>)
NFTokenOffer(NFTokenOffer<'a>)
NFTokenPage(NFTokenPage<'a>)
Offer(Offer<'a>)
PayChannel(PayChannel<'a>)
RippleState(RippleState<'a>)
SignerList(SignerList<'a>)
Ticket(Ticket<'a>)
XChainOwnedClaimID(XChainOwnedClaimID<'a>)
XChainOwnedCreateAccountClaimID(XChainOwnedCreateAccountClaimID<'a>)
Trait Implementations§
Source§impl<'a> Clone for LedgerEntry<'a>
impl<'a> Clone for LedgerEntry<'a>
Source§fn clone(&self) -> LedgerEntry<'a>
fn clone(&self) -> LedgerEntry<'a>
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<'a> Debug for LedgerEntry<'a>
impl<'a> Debug for LedgerEntry<'a>
Source§impl<'de, 'a> Deserialize<'de> for LedgerEntry<'a>
impl<'de, 'a> Deserialize<'de> for LedgerEntry<'a>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> PartialEq for LedgerEntry<'a>
impl<'a> PartialEq for LedgerEntry<'a>
Source§impl<'a> Serialize for LedgerEntry<'a>
impl<'a> Serialize for LedgerEntry<'a>
impl<'a> Eq for LedgerEntry<'a>
impl<'a> StructuralPartialEq for LedgerEntry<'a>
Auto Trait Implementations§
impl<'a> Freeze for LedgerEntry<'a>
impl<'a> RefUnwindSafe for LedgerEntry<'a>
impl<'a> Send for LedgerEntry<'a>
impl<'a> Sync for LedgerEntry<'a>
impl<'a> Unpin for LedgerEntry<'a>
impl<'a> UnwindSafe for LedgerEntry<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.