pub enum EvmUserOperationWalletActionStepEntrypointVersion {
X06,
X07,
X08,
X09,
}Expand description
The entrypoint version of the user operation.
JSON schema
{
"description": "The entrypoint version of the user operation.",
"type": "string",
"enum": [
"0.6",
"0.7",
"0.8",
"0.9"
]
}Variants§
Trait Implementations§
Source§impl Clone for EvmUserOperationWalletActionStepEntrypointVersion
impl Clone for EvmUserOperationWalletActionStepEntrypointVersion
Source§fn clone(&self) -> EvmUserOperationWalletActionStepEntrypointVersion
fn clone(&self) -> EvmUserOperationWalletActionStepEntrypointVersion
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 EvmUserOperationWalletActionStepEntrypointVersion
Source§impl<'de> Deserialize<'de> for EvmUserOperationWalletActionStepEntrypointVersion
impl<'de> Deserialize<'de> for EvmUserOperationWalletActionStepEntrypointVersion
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
impl Eq for EvmUserOperationWalletActionStepEntrypointVersion
Source§impl From<&EvmUserOperationWalletActionStepEntrypointVersion> for EvmUserOperationWalletActionStepEntrypointVersion
impl From<&EvmUserOperationWalletActionStepEntrypointVersion> for EvmUserOperationWalletActionStepEntrypointVersion
Source§fn from(value: &EvmUserOperationWalletActionStepEntrypointVersion) -> Self
fn from(value: &EvmUserOperationWalletActionStepEntrypointVersion) -> Self
Converts to this type from the input type.
Source§impl Ord for EvmUserOperationWalletActionStepEntrypointVersion
impl Ord for EvmUserOperationWalletActionStepEntrypointVersion
Source§fn cmp(
&self,
other: &EvmUserOperationWalletActionStepEntrypointVersion,
) -> Ordering
fn cmp( &self, other: &EvmUserOperationWalletActionStepEntrypointVersion, ) -> 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 EvmUserOperationWalletActionStepEntrypointVersion
impl PartialEq for EvmUserOperationWalletActionStepEntrypointVersion
Source§fn eq(&self, other: &EvmUserOperationWalletActionStepEntrypointVersion) -> bool
fn eq(&self, other: &EvmUserOperationWalletActionStepEntrypointVersion) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EvmUserOperationWalletActionStepEntrypointVersion
impl PartialOrd for EvmUserOperationWalletActionStepEntrypointVersion
Source§fn partial_cmp(
&self,
other: &EvmUserOperationWalletActionStepEntrypointVersion,
) -> Option<Ordering>
fn partial_cmp( &self, other: &EvmUserOperationWalletActionStepEntrypointVersion, ) -> Option<Ordering>
impl StructuralPartialEq for EvmUserOperationWalletActionStepEntrypointVersion
Source§impl TryFrom<&String> for EvmUserOperationWalletActionStepEntrypointVersion
impl TryFrom<&String> for EvmUserOperationWalletActionStepEntrypointVersion
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for EvmUserOperationWalletActionStepEntrypointVersion
impl TryFrom<&str> for EvmUserOperationWalletActionStepEntrypointVersion
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for EvmUserOperationWalletActionStepEntrypointVersion
impl TryFrom<String> for EvmUserOperationWalletActionStepEntrypointVersion
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for EvmUserOperationWalletActionStepEntrypointVersion
impl RefUnwindSafe for EvmUserOperationWalletActionStepEntrypointVersion
impl Send for EvmUserOperationWalletActionStepEntrypointVersion
impl Sync for EvmUserOperationWalletActionStepEntrypointVersion
impl Unpin for EvmUserOperationWalletActionStepEntrypointVersion
impl UnsafeUnpin for EvmUserOperationWalletActionStepEntrypointVersion
impl UnwindSafe for EvmUserOperationWalletActionStepEntrypointVersion
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