pub enum FeeBumpTransactionInnerTx {
Tx(TransactionV1Envelope),
}
Variants
Tx(TransactionV1Envelope)
Implementations
impl FeeBumpTransactionInnerTx
impl FeeBumpTransactionInnerTx
pub const fn name(&self) -> &'static str
pub const fn discriminant(&self) -> EnvelopeType
pub const fn variants() -> [EnvelopeType; 1]
Trait Implementations
impl Clone for FeeBumpTransactionInnerTx
impl Clone for FeeBumpTransactionInnerTx
fn clone(&self) -> FeeBumpTransactionInnerTx
fn clone(&self) -> FeeBumpTransactionInnerTx
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 FeeBumpTransactionInnerTx
impl Debug for FeeBumpTransactionInnerTx
impl Discriminant<EnvelopeType> for FeeBumpTransactionInnerTx
impl Discriminant<EnvelopeType> for FeeBumpTransactionInnerTx
fn discriminant(&self) -> EnvelopeType
impl Hash for FeeBumpTransactionInnerTx
impl Hash for FeeBumpTransactionInnerTx
impl Name for FeeBumpTransactionInnerTx
impl Name for FeeBumpTransactionInnerTx
impl Ord for FeeBumpTransactionInnerTx
impl Ord for FeeBumpTransactionInnerTx
fn cmp(&self, other: &FeeBumpTransactionInnerTx) -> Ordering
fn cmp(&self, other: &FeeBumpTransactionInnerTx) -> 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) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
impl PartialEq<FeeBumpTransactionInnerTx> for FeeBumpTransactionInnerTx
impl PartialEq<FeeBumpTransactionInnerTx> for FeeBumpTransactionInnerTx
fn eq(&self, other: &FeeBumpTransactionInnerTx) -> bool
fn eq(&self, other: &FeeBumpTransactionInnerTx) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &FeeBumpTransactionInnerTx) -> bool
fn ne(&self, other: &FeeBumpTransactionInnerTx) -> bool
This method tests for !=
.
impl PartialOrd<FeeBumpTransactionInnerTx> for FeeBumpTransactionInnerTx
impl PartialOrd<FeeBumpTransactionInnerTx> for FeeBumpTransactionInnerTx
fn partial_cmp(&self, other: &FeeBumpTransactionInnerTx) -> Option<Ordering>
fn partial_cmp(&self, other: &FeeBumpTransactionInnerTx) -> 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 Variants<EnvelopeType> for FeeBumpTransactionInnerTx
impl Variants<EnvelopeType> for FeeBumpTransactionInnerTx
fn variants() -> Iter<'static, EnvelopeType>
impl Eq for FeeBumpTransactionInnerTx
impl ReadXdr for FeeBumpTransactionInnerTx
impl StructuralEq for FeeBumpTransactionInnerTx
impl StructuralPartialEq for FeeBumpTransactionInnerTx
impl Union<EnvelopeType> for FeeBumpTransactionInnerTx
impl WriteXdr for FeeBumpTransactionInnerTx
Auto Trait Implementations
impl RefUnwindSafe for FeeBumpTransactionInnerTx
impl Send for FeeBumpTransactionInnerTx
impl Sync for FeeBumpTransactionInnerTx
impl Unpin for FeeBumpTransactionInnerTx
impl UnwindSafe for FeeBumpTransactionInnerTx
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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