pub enum SvmWalletActionStepStatus {
Confirmed,
Failed,
Finalized,
Pending,
Preparing,
Queued,
Rejected,
Reverted,
}Expand description
Status of an SVM step in a wallet action.
JSON schema
{
"title": "SVMWalletActionStepStatus",
"description": "Status of an SVM step in a wallet action.",
"type": "string",
"enum": [
"confirmed",
"failed",
"finalized",
"pending",
"preparing",
"queued",
"rejected",
"reverted"
],
"x-stainless-model": "wallet_actions.svm_wallet_action_step_status"
}Variants§
Trait Implementations§
Source§impl Clone for SvmWalletActionStepStatus
impl Clone for SvmWalletActionStepStatus
Source§fn clone(&self) -> SvmWalletActionStepStatus
fn clone(&self) -> SvmWalletActionStepStatus
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 SvmWalletActionStepStatus
Source§impl Debug for SvmWalletActionStepStatus
impl Debug for SvmWalletActionStepStatus
Source§impl<'de> Deserialize<'de> for SvmWalletActionStepStatus
impl<'de> Deserialize<'de> for SvmWalletActionStepStatus
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 SvmWalletActionStepStatus
impl Display for SvmWalletActionStepStatus
impl Eq for SvmWalletActionStepStatus
Source§impl From<&SvmWalletActionStepStatus> for SvmWalletActionStepStatus
impl From<&SvmWalletActionStepStatus> for SvmWalletActionStepStatus
Source§fn from(value: &SvmWalletActionStepStatus) -> Self
fn from(value: &SvmWalletActionStepStatus) -> Self
Converts to this type from the input type.
Source§impl FromStr for SvmWalletActionStepStatus
impl FromStr for SvmWalletActionStepStatus
Source§impl Hash for SvmWalletActionStepStatus
impl Hash for SvmWalletActionStepStatus
Source§impl Ord for SvmWalletActionStepStatus
impl Ord for SvmWalletActionStepStatus
Source§fn cmp(&self, other: &SvmWalletActionStepStatus) -> Ordering
fn cmp(&self, other: &SvmWalletActionStepStatus) -> Ordering
1.21.0 (const: unstable) · 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
Source§impl PartialEq for SvmWalletActionStepStatus
impl PartialEq for SvmWalletActionStepStatus
Source§fn eq(&self, other: &SvmWalletActionStepStatus) -> bool
fn eq(&self, other: &SvmWalletActionStepStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SvmWalletActionStepStatus
impl PartialOrd for SvmWalletActionStepStatus
impl StructuralPartialEq for SvmWalletActionStepStatus
Source§impl TryFrom<&String> for SvmWalletActionStepStatus
impl TryFrom<&String> for SvmWalletActionStepStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for SvmWalletActionStepStatus
impl TryFrom<&str> for SvmWalletActionStepStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for SvmWalletActionStepStatus
impl TryFrom<String> for SvmWalletActionStepStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for SvmWalletActionStepStatus
impl RefUnwindSafe for SvmWalletActionStepStatus
impl Send for SvmWalletActionStepStatus
impl Sync for SvmWalletActionStepStatus
impl Unpin for SvmWalletActionStepStatus
impl UnsafeUnpin for SvmWalletActionStepStatus
impl UnwindSafe for SvmWalletActionStepStatus
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