pub enum WalletActionStepType {
EvmTransaction,
EvmUserOperation,
ExternalTransaction,
SvmTransaction,
}Expand description
Type of a wallet action step.
JSON schema
{
"title": "WalletActionStepType",
"description": "Type of a wallet action step.",
"type": "string",
"enum": [
"evm_transaction",
"evm_user_operation",
"external_transaction",
"svm_transaction"
],
"x-stainless-model": "wallet_actions.wallet_action_step_type"
}Variants§
Trait Implementations§
Source§impl Clone for WalletActionStepType
impl Clone for WalletActionStepType
Source§fn clone(&self) -> WalletActionStepType
fn clone(&self) -> WalletActionStepType
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 WalletActionStepType
Source§impl Debug for WalletActionStepType
impl Debug for WalletActionStepType
Source§impl<'de> Deserialize<'de> for WalletActionStepType
impl<'de> Deserialize<'de> for WalletActionStepType
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 WalletActionStepType
impl Display for WalletActionStepType
impl Eq for WalletActionStepType
Source§impl From<&WalletActionStepType> for WalletActionStepType
impl From<&WalletActionStepType> for WalletActionStepType
Source§fn from(value: &WalletActionStepType) -> Self
fn from(value: &WalletActionStepType) -> Self
Converts to this type from the input type.
Source§impl FromStr for WalletActionStepType
impl FromStr for WalletActionStepType
Source§impl Hash for WalletActionStepType
impl Hash for WalletActionStepType
Source§impl Ord for WalletActionStepType
impl Ord for WalletActionStepType
Source§fn cmp(&self, other: &WalletActionStepType) -> Ordering
fn cmp(&self, other: &WalletActionStepType) -> 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 WalletActionStepType
impl PartialEq for WalletActionStepType
Source§fn eq(&self, other: &WalletActionStepType) -> bool
fn eq(&self, other: &WalletActionStepType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WalletActionStepType
impl PartialOrd for WalletActionStepType
Source§impl Serialize for WalletActionStepType
impl Serialize for WalletActionStepType
impl StructuralPartialEq for WalletActionStepType
Source§impl TryFrom<&String> for WalletActionStepType
impl TryFrom<&String> for WalletActionStepType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for WalletActionStepType
impl TryFrom<&str> for WalletActionStepType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for WalletActionStepType
impl TryFrom<String> for WalletActionStepType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for WalletActionStepType
impl RefUnwindSafe for WalletActionStepType
impl Send for WalletActionStepType
impl Sync for WalletActionStepType
impl Unpin for WalletActionStepType
impl UnsafeUnpin for WalletActionStepType
impl UnwindSafe for WalletActionStepType
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