[−][src]Struct stellar_base::operations::SetOptionsOperation
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]
source_account: Option<MuxedAccount>,
x: &SetOptionsOp
) -> Result<SetOptionsOperation>
Creates from the xdr operation body.
Trait Implementations
impl Clone for SetOptionsOperation[src]
fn clone(&self) -> SetOptionsOperation[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for SetOptionsOperation[src]
impl Eq for SetOptionsOperation[src]
impl PartialEq<SetOptionsOperation> for SetOptionsOperation[src]
fn eq(&self, other: &SetOptionsOperation) -> bool[src]
fn ne(&self, other: &SetOptionsOperation) -> bool[src]
impl StructuralEq for SetOptionsOperation[src]
impl StructuralPartialEq for SetOptionsOperation[src]
Auto Trait Implementations
impl RefUnwindSafe for SetOptionsOperation
impl Send for SetOptionsOperation
impl Sync for SetOptionsOperation
impl Unpin for SetOptionsOperation
impl UnwindSafe for SetOptionsOperation
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,