pub struct SetOptionsOperation { /* private fields */ }Implementations§
Source§impl SetOptionsOperation
impl SetOptionsOperation
Sourcepub fn source_account(&self) -> &Option<MuxedAccount>
pub fn source_account(&self) -> &Option<MuxedAccount>
Retrieves the operation source account.
Sourcepub fn source_account_mut(&mut self) -> &mut Option<MuxedAccount>
pub fn source_account_mut(&mut self) -> &mut Option<MuxedAccount>
Retrieves a reference to the operation source account.
Sourcepub fn inflation_destination(&self) -> &Option<PublicKey>
pub fn inflation_destination(&self) -> &Option<PublicKey>
Retrieves the operation inflation destination.
Sourcepub fn inflation_destination_mut(&mut self) -> &mut Option<PublicKey>
pub fn inflation_destination_mut(&mut self) -> &mut Option<PublicKey>
Retrieves a mutable reference to the operation inflation destination.
Sourcepub fn clear_flags(&self) -> &Option<AccountFlags>
pub fn clear_flags(&self) -> &Option<AccountFlags>
Retrieves the operation clear flags.
Sourcepub fn clear_flags_mut(&mut self) -> &mut Option<AccountFlags>
pub fn clear_flags_mut(&mut self) -> &mut Option<AccountFlags>
Retrieves a mutable reference to the operation clear flags.
Sourcepub fn set_flags(&self) -> &Option<AccountFlags>
pub fn set_flags(&self) -> &Option<AccountFlags>
Retrieves the operation set flags.
Sourcepub fn set_flags_mut(&mut self) -> &mut Option<AccountFlags>
pub fn set_flags_mut(&mut self) -> &mut Option<AccountFlags>
Retrieves a mutable reference to the operation set flags.
Sourcepub fn master_weight(&self) -> &Option<u32>
pub fn master_weight(&self) -> &Option<u32>
Retrieves the operation master weight.
Sourcepub fn master_weight_mut(&mut self) -> &mut Option<u32>
pub fn master_weight_mut(&mut self) -> &mut Option<u32>
Retrieves a mutable reference to the operation master weight.
Sourcepub fn low_threshold(&self) -> &Option<u32>
pub fn low_threshold(&self) -> &Option<u32>
Retrieves the operation low threshold.
Sourcepub fn low_threshold_mut(&mut self) -> &mut Option<u32>
pub fn low_threshold_mut(&mut self) -> &mut Option<u32>
Retrieves a mutable reference to the operation low threshold.
Sourcepub fn medium_threshold(&self) -> &Option<u32>
pub fn medium_threshold(&self) -> &Option<u32>
Retrieves the operation medium threshold.
Sourcepub fn medium_threshold_mut(&mut self) -> &mut Option<u32>
pub fn medium_threshold_mut(&mut self) -> &mut Option<u32>
Retrieves a mutable reference to the operation medium threshold.
Sourcepub fn high_threshold(&self) -> &Option<u32>
pub fn high_threshold(&self) -> &Option<u32>
Retrieves the operation high threshold.
Sourcepub fn high_threshold_mut(&mut self) -> &mut Option<u32>
pub fn high_threshold_mut(&mut self) -> &mut Option<u32>
Retrieves a mutable reference to the operation high threshold.
Sourcepub fn home_domain(&self) -> &Option<String>
pub fn home_domain(&self) -> &Option<String>
Retrieves the operation home domain.
Sourcepub fn home_domain_mut(&mut self) -> &mut Option<String>
pub fn home_domain_mut(&mut self) -> &mut Option<String>
Retrieves a mutable reference to the operation home domain.
Sourcepub fn signer_mut(&mut self) -> &mut Option<Signer>
pub fn signer_mut(&mut self) -> &mut Option<Signer>
Retrieves a mutable reference the operation signer.
Sourcepub fn to_xdr_operation_body(&self) -> Result<OperationBody>
pub fn to_xdr_operation_body(&self) -> Result<OperationBody>
Returns the xdr operation body.
Sourcepub fn from_xdr_operation_body(
source_account: Option<MuxedAccount>,
x: &SetOptionsOp,
) -> Result<SetOptionsOperation>
pub fn from_xdr_operation_body( source_account: Option<MuxedAccount>, x: &SetOptionsOp, ) -> Result<SetOptionsOperation>
Creates from the xdr operation body.
Trait Implementations§
Source§impl Clone for SetOptionsOperation
impl Clone for SetOptionsOperation
Source§fn clone(&self) -> SetOptionsOperation
fn clone(&self) -> SetOptionsOperation
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more