pub enum LedgerEntryExtensionV1Ext {
V0,
}Expand description
LedgerEntryExtensionV1Ext is an XDR NestedUnion defines as:
union switch (int v)
{
case 0:
void;
}Variants§
V0
Implementations§
Trait Implementations§
Source§impl Clone for LedgerEntryExtensionV1Ext
impl Clone for LedgerEntryExtensionV1Ext
Source§fn clone(&self) -> LedgerEntryExtensionV1Ext
fn clone(&self) -> LedgerEntryExtensionV1Ext
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 moreSource§impl Debug for LedgerEntryExtensionV1Ext
impl Debug for LedgerEntryExtensionV1Ext
Source§impl Default for LedgerEntryExtensionV1Ext
Available on crate feature alloc only.
impl Default for LedgerEntryExtensionV1Ext
Available on crate feature
alloc only.Source§fn default() -> LedgerEntryExtensionV1Ext
fn default() -> LedgerEntryExtensionV1Ext
Returns the “default value” for a type. Read more
Source§impl Discriminant<i32> for LedgerEntryExtensionV1Ext
impl Discriminant<i32> for LedgerEntryExtensionV1Ext
fn discriminant(&self) -> i32
impl Eq for LedgerEntryExtensionV1Ext
Source§impl Hash for LedgerEntryExtensionV1Ext
impl Hash for LedgerEntryExtensionV1Ext
Source§impl Ord for LedgerEntryExtensionV1Ext
impl Ord for LedgerEntryExtensionV1Ext
Source§fn cmp(&self, other: &LedgerEntryExtensionV1Ext) -> Ordering
fn cmp(&self, other: &LedgerEntryExtensionV1Ext) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LedgerEntryExtensionV1Ext
impl PartialEq for LedgerEntryExtensionV1Ext
Source§fn eq(&self, other: &LedgerEntryExtensionV1Ext) -> bool
fn eq(&self, other: &LedgerEntryExtensionV1Ext) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for LedgerEntryExtensionV1Ext
impl PartialOrd for LedgerEntryExtensionV1Ext
Source§impl ReadXdr for LedgerEntryExtensionV1Ext
impl ReadXdr for LedgerEntryExtensionV1Ext
Source§fn read_xdr<R>(r: &mut Limited<R>) -> Result<LedgerEntryExtensionV1Ext, Error>where
R: Read,
fn read_xdr<R>(r: &mut Limited<R>) -> Result<LedgerEntryExtensionV1Ext, Error>where
R: Read,
Read the XDR and construct the type. Read more
Source§fn read_xdr_to_end<R>(r: &mut Limited<R>) -> Result<Self, Error>where
R: Read,
fn read_xdr_to_end<R>(r: &mut Limited<R>) -> Result<Self, Error>where
R: Read,
Read the XDR and construct the type, and consider it an error if the
read does not completely consume the read implementation. Read more
Source§fn read_xdr_into<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
fn read_xdr_into<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
Read the XDR and construct the type. Read more
Source§fn read_xdr_into_to_end<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
fn read_xdr_into_to_end<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
Read the XDR into the existing value, and consider it an error if the
read does not completely consume the read implementation. Read more
Source§fn read_xdr_iter<R>(r: &mut Limited<R>) -> ReadXdrIter<&mut R, Self> ⓘwhere
R: Read,
fn read_xdr_iter<R>(r: &mut Limited<R>) -> ReadXdrIter<&mut R, Self> ⓘwhere
R: Read,
Create an iterator that reads the read implementation as a stream of
values that are read into the implementing type. Read more
impl StructuralPartialEq for LedgerEntryExtensionV1Ext
impl Union<i32> for LedgerEntryExtensionV1Ext
Auto Trait Implementations§
impl Freeze for LedgerEntryExtensionV1Ext
impl RefUnwindSafe for LedgerEntryExtensionV1Ext
impl Send for LedgerEntryExtensionV1Ext
impl Sync for LedgerEntryExtensionV1Ext
impl Unpin for LedgerEntryExtensionV1Ext
impl UnsafeUnpin for LedgerEntryExtensionV1Ext
impl UnwindSafe for LedgerEntryExtensionV1Ext
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