Enum DepositStatus
#[non_exhaustive]pub enum DepositStatus {
Pending,
Completed,
Failed,
Unknown,
}Expand description
Current state of a deposit.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Pending
Seen but not sufficiently confirmed.
Completed
Credited to the destination account.
Failed
Rejected, returned, or otherwise failed.
Unknown
Provider status not mapped by this SDK version.
Trait Implementations§
§impl Clone for DepositStatus
impl Clone for DepositStatus
§fn clone(&self) -> DepositStatus
fn clone(&self) -> DepositStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DepositStatus
§impl Debug for DepositStatus
impl Debug for DepositStatus
impl Eq for DepositStatus
§impl Hash for DepositStatus
impl Hash for DepositStatus
§impl PartialEq for DepositStatus
impl PartialEq for DepositStatus
impl StructuralPartialEq for DepositStatus
Auto Trait Implementations§
impl Freeze for DepositStatus
impl RefUnwindSafe for DepositStatus
impl Send for DepositStatus
impl Sync for DepositStatus
impl Unpin for DepositStatus
impl UnsafeUnpin for DepositStatus
impl UnwindSafe for DepositStatus
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.