pub struct SetOptionsOp {
pub inflation_dest: Option<AccountId>,
pub clear_flags: Option<Uint32>,
pub set_flags: Option<Uint32>,
pub master_weight: Option<Uint32>,
pub low_threshold: Option<Uint32>,
pub med_threshold: Option<Uint32>,
pub high_threshold: Option<Uint32>,
pub home_domain: Option<String32>,
pub signer: Option<Signer>,
}Expand description
Autogenerated definition for type SetOptionsOp
Fields§
§inflation_dest: Option<AccountId>§clear_flags: Option<Uint32>§set_flags: Option<Uint32>§master_weight: Option<Uint32>§low_threshold: Option<Uint32>§med_threshold: Option<Uint32>§high_threshold: Option<Uint32>§home_domain: Option<String32>§signer: Option<Signer>Trait Implementations§
Source§impl Clone for SetOptionsOp
impl Clone for SetOptionsOp
Source§fn clone(&self) -> SetOptionsOp
fn clone(&self) -> SetOptionsOp
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SetOptionsOp
impl Debug for SetOptionsOp
Source§impl PartialEq for SetOptionsOp
impl PartialEq for SetOptionsOp
Source§impl XdrCodec for SetOptionsOp
impl XdrCodec for SetOptionsOp
Source§fn to_xdr_buffered(&self, write_stream: &mut WriteStream)
fn to_xdr_buffered(&self, write_stream: &mut WriteStream)
Encode the XDR to a write stream Read more
Source§fn from_xdr_buffered<T: AsRef<[u8]>>(
read_stream: &mut ReadStream<T>,
) -> Result<Self, DecodeError>
fn from_xdr_buffered<T: AsRef<[u8]>>( read_stream: &mut ReadStream<T>, ) -> Result<Self, DecodeError>
Decode the XDR from a read stream Read more
Source§fn from_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
fn from_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
Decode XDR provided as a reference to a byte vector Read more
Source§fn from_base64_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
fn from_base64_xdr<T: AsRef<[u8]>>(input: T) -> Result<Self, DecodeError>
Decode this type from base64 encoded XDR Read more
impl Eq for SetOptionsOp
impl StructuralPartialEq for SetOptionsOp
Auto Trait Implementations§
impl Freeze for SetOptionsOp
impl RefUnwindSafe for SetOptionsOp
impl Send for SetOptionsOp
impl Sync for SetOptionsOp
impl Unpin for SetOptionsOp
impl UnwindSafe for SetOptionsOp
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more