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