pub enum AccountMergeResult {
Success(i64),
Malformed,
NoAccount,
ImmutableSet,
HasSubEntries,
SeqnumTooFar,
DestFull,
IsSponsor,
}
Expand description
AccountMergeResult is an XDR Union defines as:
union AccountMergeResult switch (AccountMergeResultCode code)
{
case ACCOUNT_MERGE_SUCCESS:
int64 sourceAccountBalance; // how much got transferred from source account
case ACCOUNT_MERGE_MALFORMED:
case ACCOUNT_MERGE_NO_ACCOUNT:
case ACCOUNT_MERGE_IMMUTABLE_SET:
case ACCOUNT_MERGE_HAS_SUB_ENTRIES:
case ACCOUNT_MERGE_SEQNUM_TOO_FAR:
case ACCOUNT_MERGE_DEST_FULL:
case ACCOUNT_MERGE_IS_SPONSOR:
void;
};
Variants§
Implementations§
§impl AccountMergeResult
impl AccountMergeResult
pub const VARIANTS: [AccountMergeResultCode; 8] = _
pub const VARIANTS_STR: [&'static str; 8] = _
pub const fn name(&self) -> &'static str
pub const fn discriminant(&self) -> AccountMergeResultCode
pub const fn variants() -> [AccountMergeResultCode; 8]
Trait Implementations§
§impl<'arbitrary> Arbitrary<'arbitrary> for AccountMergeResult
impl<'arbitrary> Arbitrary<'arbitrary> for AccountMergeResult
§fn arbitrary(
u: &mut Unstructured<'arbitrary>
) -> Result<AccountMergeResult, Error>
fn arbitrary( u: &mut Unstructured<'arbitrary> ) -> Result<AccountMergeResult, Error>
Generate an arbitrary value of
Self
from the given unstructured data. Read more§fn arbitrary_take_rest(
u: Unstructured<'arbitrary>
) -> Result<AccountMergeResult, Error>
fn arbitrary_take_rest( u: Unstructured<'arbitrary> ) -> Result<AccountMergeResult, Error>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read more§impl Clone for AccountMergeResult
impl Clone for AccountMergeResult
§fn clone(&self) -> AccountMergeResult
fn clone(&self) -> AccountMergeResult
Returns a copy 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 more§impl Debug for AccountMergeResult
impl Debug for AccountMergeResult
§impl Discriminant<AccountMergeResultCode> for AccountMergeResult
impl Discriminant<AccountMergeResultCode> for AccountMergeResult
fn discriminant(&self) -> AccountMergeResultCode
§impl Hash for AccountMergeResult
impl Hash for AccountMergeResult
§impl Ord for AccountMergeResult
impl Ord for AccountMergeResult
§fn cmp(&self, other: &AccountMergeResult) -> Ordering
fn cmp(&self, other: &AccountMergeResult) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialEq for AccountMergeResult
impl PartialEq for AccountMergeResult
§fn eq(&self, other: &AccountMergeResult) -> bool
fn eq(&self, other: &AccountMergeResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl PartialOrd for AccountMergeResult
impl PartialOrd for AccountMergeResult
§fn partial_cmp(&self, other: &AccountMergeResult) -> Option<Ordering>
fn partial_cmp(&self, other: &AccountMergeResult) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more§impl ReadXdr for AccountMergeResult
impl ReadXdr for AccountMergeResult
§fn read_xdr<R>(r: &mut Limited<R>) -> Result<AccountMergeResult, Error>where
R: Read,
fn read_xdr<R>(r: &mut Limited<R>) -> Result<AccountMergeResult, Error>where
R: Read,
Read the XDR and construct the type. Read more
§fn read_xdr_to_end<R>(r: &mut Limited<R>) -> Result<Self, Error>where
R: Read,
fn read_xdr_to_end<R>(r: &mut Limited<R>) -> Result<Self, Error>where
R: Read,
Read the XDR and construct the type, and consider it an error if the
read does not completely consume the read implementation. Read more
§fn read_xdr_into<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
fn read_xdr_into<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
Read the XDR and construct the type. Read more
§fn read_xdr_into_to_end<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
fn read_xdr_into_to_end<R>(&mut self, r: &mut Limited<R>) -> Result<(), Error>where
R: Read,
Read the XDR into the existing value, and consider it an error if the
read does not completely consume the read implementation. Read more
§fn read_xdr_iter<R>(r: &mut Limited<R>) -> ReadXdrIter<&mut R, Self> ⓘwhere
R: Read,
fn read_xdr_iter<R>(r: &mut Limited<R>) -> ReadXdrIter<&mut R, Self> ⓘwhere
R: Read,
Create an iterator that reads the read implementation as a stream of
values that are read into the implementing type. Read more
§impl Variants<AccountMergeResultCode> for AccountMergeResult
impl Variants<AccountMergeResultCode> for AccountMergeResult
fn variants() -> Iter<'static, AccountMergeResultCode>
§impl WriteXdr for AccountMergeResult
impl WriteXdr for AccountMergeResult
impl Eq for AccountMergeResult
impl StructuralPartialEq for AccountMergeResult
impl Union<AccountMergeResultCode> for AccountMergeResult
Auto Trait Implementations§
impl RefUnwindSafe for AccountMergeResult
impl Send for AccountMergeResult
impl Sync for AccountMergeResult
impl Unpin for AccountMergeResult
impl UnwindSafe for AccountMergeResult
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