pub enum ApiTxStatus {
Pending,
WaitingForVerification(Vec<String>),
Valid,
Invalid(Vec<String>),
ProcessingIncoming,
ProcessingOutgoing,
Completed,
Failed,
}Expand description
The state of the transaction
Variants§
Pending
WaitingForVerification(Vec<String>)
Valid
Invalid(Vec<String>)
ProcessingIncoming
ProcessingOutgoing
Completed
Failed
Trait Implementations§
Source§impl Clone for ApiTxStatus
impl Clone for ApiTxStatus
Source§fn clone(&self) -> ApiTxStatus
fn clone(&self) -> ApiTxStatus
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 moreSource§impl Debug for ApiTxStatus
impl Debug for ApiTxStatus
Source§impl<'de> Deserialize<'de> for ApiTxStatus
impl<'de> Deserialize<'de> for ApiTxStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ApiTxStatus
impl Display for ApiTxStatus
Source§impl PartialEq for ApiTxStatus
impl PartialEq for ApiTxStatus
Source§fn eq(&self, other: &ApiTxStatus) -> bool
fn eq(&self, other: &ApiTxStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ApiTxStatus
impl PartialOrd for ApiTxStatus
Source§impl Serialize for ApiTxStatus
impl Serialize for ApiTxStatus
impl Eq for ApiTxStatus
impl StructuralPartialEq for ApiTxStatus
Auto Trait Implementations§
impl Freeze for ApiTxStatus
impl RefUnwindSafe for ApiTxStatus
impl Send for ApiTxStatus
impl Sync for ApiTxStatus
impl Unpin for ApiTxStatus
impl UnsafeUnpin for ApiTxStatus
impl UnwindSafe for ApiTxStatus
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