pub enum SendEndUserOperationCriteriaItem {
EthValueCriterion(EthValueCriterion),
EvmAddressCriterion(EvmAddressCriterion),
EvmNetworkCriterion(EvmNetworkCriterion),
EvmDataCriterion(EvmDataCriterion),
NetUsdChangeCriterion(NetUsdChangeCriterion),
}Expand description
SendEndUserOperationCriteriaItem
JSON schema
{
"oneOf": [
{
"$ref": "#/components/schemas/EthValueCriterion"
},
{
"$ref": "#/components/schemas/EvmAddressCriterion"
},
{
"$ref": "#/components/schemas/EvmNetworkCriterion"
},
{
"$ref": "#/components/schemas/EvmDataCriterion"
},
{
"$ref": "#/components/schemas/NetUSDChangeCriterion"
}
]
}Variants§
EthValueCriterion(EthValueCriterion)
EvmAddressCriterion(EvmAddressCriterion)
EvmNetworkCriterion(EvmNetworkCriterion)
EvmDataCriterion(EvmDataCriterion)
NetUsdChangeCriterion(NetUsdChangeCriterion)
Trait Implementations§
Source§impl Clone for SendEndUserOperationCriteriaItem
impl Clone for SendEndUserOperationCriteriaItem
Source§fn clone(&self) -> SendEndUserOperationCriteriaItem
fn clone(&self) -> SendEndUserOperationCriteriaItem
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<'de> Deserialize<'de> for SendEndUserOperationCriteriaItem
impl<'de> Deserialize<'de> for SendEndUserOperationCriteriaItem
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 From<&SendEndUserOperationCriteriaItem> for SendEndUserOperationCriteriaItem
impl From<&SendEndUserOperationCriteriaItem> for SendEndUserOperationCriteriaItem
Source§fn from(value: &SendEndUserOperationCriteriaItem) -> Self
fn from(value: &SendEndUserOperationCriteriaItem) -> Self
Converts to this type from the input type.
Source§impl From<EthValueCriterion> for SendEndUserOperationCriteriaItem
impl From<EthValueCriterion> for SendEndUserOperationCriteriaItem
Source§fn from(value: EthValueCriterion) -> Self
fn from(value: EthValueCriterion) -> Self
Converts to this type from the input type.
Source§impl From<EvmAddressCriterion> for SendEndUserOperationCriteriaItem
impl From<EvmAddressCriterion> for SendEndUserOperationCriteriaItem
Source§fn from(value: EvmAddressCriterion) -> Self
fn from(value: EvmAddressCriterion) -> Self
Converts to this type from the input type.
Source§impl From<EvmDataCriterion> for SendEndUserOperationCriteriaItem
impl From<EvmDataCriterion> for SendEndUserOperationCriteriaItem
Source§fn from(value: EvmDataCriterion) -> Self
fn from(value: EvmDataCriterion) -> Self
Converts to this type from the input type.
Source§impl From<EvmNetworkCriterion> for SendEndUserOperationCriteriaItem
impl From<EvmNetworkCriterion> for SendEndUserOperationCriteriaItem
Source§fn from(value: EvmNetworkCriterion) -> Self
fn from(value: EvmNetworkCriterion) -> Self
Converts to this type from the input type.
Source§impl From<NetUsdChangeCriterion> for SendEndUserOperationCriteriaItem
impl From<NetUsdChangeCriterion> for SendEndUserOperationCriteriaItem
Source§fn from(value: NetUsdChangeCriterion) -> Self
fn from(value: NetUsdChangeCriterion) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SendEndUserOperationCriteriaItem
impl RefUnwindSafe for SendEndUserOperationCriteriaItem
impl Send for SendEndUserOperationCriteriaItem
impl Sync for SendEndUserOperationCriteriaItem
impl Unpin for SendEndUserOperationCriteriaItem
impl UnsafeUnpin for SendEndUserOperationCriteriaItem
impl UnwindSafe for SendEndUserOperationCriteriaItem
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