pub enum FeeBumpTransactionInnerTx {
Tx(TransactionV1Envelope),
}
Variants
Tx(TransactionV1Envelope)
Implementations
impl FeeBumpTransactionInnerTx
impl FeeBumpTransactionInnerTx
pub const VARIANTS: [EnvelopeType; 1] = [EnvelopeType::Tx]
pub const VARIANTS_STR: [&'static str; 1] = ["Tx"]
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 moreimpl 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) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + 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
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>
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 moreimpl 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 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