pub enum TransactionMeta {
V0(VecM<OperationMeta, _>),
V1(TransactionMetaV1),
V2(TransactionMetaV2),
V3(TransactionMetaV3),
}
Variants
V0(VecM<OperationMeta, _>)
V1(TransactionMetaV1)
V2(TransactionMetaV2)
V3(TransactionMetaV3)
Implementations
impl TransactionMeta
impl TransactionMeta
Trait Implementations
impl Clone for TransactionMeta
impl Clone for TransactionMeta
fn clone(&self) -> TransactionMeta
fn clone(&self) -> TransactionMeta
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for TransactionMeta
impl Debug for TransactionMeta
impl Discriminant<i32> for TransactionMeta
impl Discriminant<i32> for TransactionMeta
fn discriminant(&self) -> i32
impl Hash for TransactionMeta
impl Hash for TransactionMeta
impl Name for TransactionMeta
impl Name for TransactionMeta
impl Ord for TransactionMeta
impl Ord for TransactionMeta
fn cmp(&self, other: &TransactionMeta) -> Ordering
fn cmp(&self, other: &TransactionMeta) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
impl PartialEq<TransactionMeta> for TransactionMeta
impl PartialEq<TransactionMeta> for TransactionMeta
fn eq(&self, other: &TransactionMeta) -> bool
fn eq(&self, other: &TransactionMeta) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl PartialOrd<TransactionMeta> for TransactionMeta
impl PartialOrd<TransactionMeta> for TransactionMeta
fn partial_cmp(&self, other: &TransactionMeta) -> Option<Ordering>
fn partial_cmp(&self, other: &TransactionMeta) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for TransactionMeta
impl ReadXdr for TransactionMeta
impl StructuralEq for TransactionMeta
impl StructuralPartialEq for TransactionMeta
impl Union<i32> for TransactionMeta
impl WriteXdr for TransactionMeta
Auto Trait Implementations
impl RefUnwindSafe for TransactionMeta
impl Send for TransactionMeta
impl Sync for TransactionMeta
impl Unpin for TransactionMeta
impl UnwindSafe for TransactionMeta
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more