[][src]Struct stellar_base::operations::SetOptionsOperation

pub struct SetOptionsOperation { /* fields omitted */ }

Implementations

impl SetOptionsOperation[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 inflation_destination(&self) -> &Option<PublicKey>[src]

Retrieves the operation inflation destination.

pub fn inflation_destination_mut(&mut self) -> &mut Option<PublicKey>[src]

Retrieves a mutable reference to the operation inflation destination.

pub fn clear_flags(&self) -> &Option<AccountFlags>[src]

Retrieves the operation clear flags.

pub fn clear_flags_mut(&mut self) -> &mut Option<AccountFlags>[src]

Retrieves a mutable reference to the operation clear flags.

pub fn set_flags(&self) -> &Option<AccountFlags>[src]

Retrieves the operation set flags.

pub fn set_flags_mut(&mut self) -> &mut Option<AccountFlags>[src]

Retrieves a mutable reference to the operation set flags.

pub fn master_weight(&self) -> &Option<u32>[src]

Retrieves the operation master weight.

pub fn master_weight_mut(&mut self) -> &mut Option<u32>[src]

Retrieves a mutable reference to the operation master weight.

pub fn low_threshold(&self) -> &Option<u32>[src]

Retrieves the operation low threshold.

pub fn low_threshold_mut(&mut self) -> &mut Option<u32>[src]

Retrieves a mutable reference to the operation low threshold.

pub fn medium_threshold(&self) -> &Option<u32>[src]

Retrieves the operation medium threshold.

pub fn medium_threshold_mut(&mut self) -> &mut Option<u32>[src]

Retrieves a mutable reference to the operation medium threshold.

pub fn high_threshold(&self) -> &Option<u32>[src]

Retrieves the operation high threshold.

pub fn high_threshold_mut(&mut self) -> &mut Option<u32>[src]

Retrieves a mutable reference to the operation high threshold.

pub fn home_domain(&self) -> &Option<String>[src]

Retrieves the operation home domain.

pub fn home_domain_mut(&mut self) -> &mut Option<String>[src]

Retrieves a mutable reference to the operation home domain.

pub fn signer(&self) -> &Option<Signer>[src]

Retrieves the operation signer.

pub fn signer_mut(&mut self) -> &mut Option<Signer>[src]

Retrieves a mutable reference the operation signer.

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: &SetOptionsOp
) -> Result<SetOptionsOperation>
[src]

Creates from the xdr operation body.

Trait Implementations

impl Clone for SetOptionsOperation[src]

impl Debug for SetOptionsOperation[src]

impl Eq for SetOptionsOperation[src]

impl PartialEq<SetOptionsOperation> for SetOptionsOperation[src]

impl StructuralEq for SetOptionsOperation[src]

impl StructuralPartialEq for SetOptionsOperation[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.