[][src]Struct stellar_base::operations::BumpSequenceOperation

pub struct BumpSequenceOperation { /* fields omitted */ }

Implementations

impl BumpSequenceOperation[src]

pub fn source_account(&self) -> &Option<MuxedAccount>[src]

Retrieves the operation source account.

pub fn source_account_mut(&mut self) -> &mut Option<MuxedAccount>[src]

Retrieves a reference to the operation source account.

pub fn bump_to(&self) -> &i64[src]

Retrieves the operatino bump to.

pub fn bump_to_mut(&mut self) -> &mut i64[src]

Retrieves the operatino bump to.

pub fn to_xdr_operation_body(&self) -> Result<OperationBody>[src]

Returns the xdr operation body.

pub fn from_xdr_operation_body(
    source_account: Option<MuxedAccount>,
    x: &BumpSequenceOp
) -> Result<BumpSequenceOperation>
[src]

Creates from the xdr operation body.

Trait Implementations

impl Clone for BumpSequenceOperation[src]

impl Debug for BumpSequenceOperation[src]

impl Eq for BumpSequenceOperation[src]

impl PartialEq<BumpSequenceOperation> for BumpSequenceOperation[src]

impl StructuralEq for BumpSequenceOperation[src]

impl StructuralPartialEq for BumpSequenceOperation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.