pub enum SendSolTransactionCriteriaItem {
SolAddressCriterion(SolAddressCriterion),
SolValueCriterion(SolValueCriterion),
SplAddressCriterion(SplAddressCriterion),
SplValueCriterion(SplValueCriterion),
MintAddressCriterion(MintAddressCriterion),
SolDataCriterion(SolDataCriterion),
}
Expand description
SendSolTransactionCriteriaItem
JSON schema
{
"oneOf": [
{
"$ref": "#/components/schemas/SolAddressCriterion"
},
{
"$ref": "#/components/schemas/SolValueCriterion"
},
{
"$ref": "#/components/schemas/SplAddressCriterion"
},
{
"$ref": "#/components/schemas/SplValueCriterion"
},
{
"$ref": "#/components/schemas/MintAddressCriterion"
},
{
"$ref": "#/components/schemas/SolDataCriterion"
}
]
}
Variants§
SolAddressCriterion(SolAddressCriterion)
SolValueCriterion(SolValueCriterion)
SplAddressCriterion(SplAddressCriterion)
SplValueCriterion(SplValueCriterion)
MintAddressCriterion(MintAddressCriterion)
SolDataCriterion(SolDataCriterion)
Trait Implementations§
Source§impl Clone for SendSolTransactionCriteriaItem
impl Clone for SendSolTransactionCriteriaItem
Source§fn clone(&self) -> SendSolTransactionCriteriaItem
fn clone(&self) -> SendSolTransactionCriteriaItem
Returns a duplicate of the value. Read more
1.0.0 · 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 SendSolTransactionCriteriaItem
impl<'de> Deserialize<'de> for SendSolTransactionCriteriaItem
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<&SendSolTransactionCriteriaItem> for SendSolTransactionCriteriaItem
impl From<&SendSolTransactionCriteriaItem> for SendSolTransactionCriteriaItem
Source§fn from(value: &SendSolTransactionCriteriaItem) -> Self
fn from(value: &SendSolTransactionCriteriaItem) -> Self
Converts to this type from the input type.
Source§impl From<MintAddressCriterion> for SendSolTransactionCriteriaItem
impl From<MintAddressCriterion> for SendSolTransactionCriteriaItem
Source§fn from(value: MintAddressCriterion) -> Self
fn from(value: MintAddressCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SolAddressCriterion> for SendSolTransactionCriteriaItem
impl From<SolAddressCriterion> for SendSolTransactionCriteriaItem
Source§fn from(value: SolAddressCriterion) -> Self
fn from(value: SolAddressCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SolDataCriterion> for SendSolTransactionCriteriaItem
impl From<SolDataCriterion> for SendSolTransactionCriteriaItem
Source§fn from(value: SolDataCriterion) -> Self
fn from(value: SolDataCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SolValueCriterion> for SendSolTransactionCriteriaItem
impl From<SolValueCriterion> for SendSolTransactionCriteriaItem
Source§fn from(value: SolValueCriterion) -> Self
fn from(value: SolValueCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SplAddressCriterion> for SendSolTransactionCriteriaItem
impl From<SplAddressCriterion> for SendSolTransactionCriteriaItem
Source§fn from(value: SplAddressCriterion) -> Self
fn from(value: SplAddressCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SplValueCriterion> for SendSolTransactionCriteriaItem
impl From<SplValueCriterion> for SendSolTransactionCriteriaItem
Source§fn from(value: SplValueCriterion) -> Self
fn from(value: SplValueCriterion) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SendSolTransactionCriteriaItem
impl RefUnwindSafe for SendSolTransactionCriteriaItem
impl Send for SendSolTransactionCriteriaItem
impl Sync for SendSolTransactionCriteriaItem
impl Unpin for SendSolTransactionCriteriaItem
impl UnwindSafe for SendSolTransactionCriteriaItem
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