pub enum SetOptionsResultCode {
SetOptionsSuccess = 0,
SetOptionsLowReserve = -1,
SetOptionsTooManySigners = -2,
SetOptionsBadFlags = -3,
SetOptionsInvalidInflation = -4,
SetOptionsCantChange = -5,
SetOptionsUnknownFlag = -6,
SetOptionsThresholdOutOfRange = -7,
SetOptionsBadSigner = -8,
SetOptionsInvalidHomeDomain = -9,
SetOptionsAuthRevocableRequired = -10,
}Expand description
Autogenerated definition for type SetOptionsResultCode
Variants§
SetOptionsSuccess = 0
SetOptionsLowReserve = -1
SetOptionsTooManySigners = -2
SetOptionsBadFlags = -3
SetOptionsInvalidInflation = -4
SetOptionsCantChange = -5
SetOptionsUnknownFlag = -6
SetOptionsThresholdOutOfRange = -7
SetOptionsBadSigner = -8
SetOptionsInvalidHomeDomain = -9
SetOptionsAuthRevocableRequired = -10
Trait Implementations§
Source§impl Clone for SetOptionsResultCode
impl Clone for SetOptionsResultCode
Source§fn clone(&self) -> SetOptionsResultCode
fn clone(&self) -> SetOptionsResultCode
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 SetOptionsResultCode
impl Debug for SetOptionsResultCode
Source§impl PartialEq for SetOptionsResultCode
impl PartialEq for SetOptionsResultCode
Source§impl XdrCodec for SetOptionsResultCode
impl XdrCodec for SetOptionsResultCode
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 Copy for SetOptionsResultCode
impl Eq for SetOptionsResultCode
impl StructuralPartialEq for SetOptionsResultCode
Auto Trait Implementations§
impl Freeze for SetOptionsResultCode
impl RefUnwindSafe for SetOptionsResultCode
impl Send for SetOptionsResultCode
impl Sync for SetOptionsResultCode
impl Unpin for SetOptionsResultCode
impl UnwindSafe for SetOptionsResultCode
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