pub enum SendEndUserSolTransactionCriteriaItem {
SolAddressCriterion(SolAddressCriterion),
SolValueCriterion(SolValueCriterion),
SplAddressCriterion(SplAddressCriterion),
SplValueCriterion(SplValueCriterion),
MintAddressCriterion(MintAddressCriterion),
SolDataCriterion(SolDataCriterion),
ProgramIdCriterion(ProgramIdCriterion),
SolNetworkCriterion(SolNetworkCriterion),
}Expand description
SendEndUserSolTransactionCriteriaItem
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"
},
{
"$ref": "#/components/schemas/ProgramIdCriterion"
},
{
"$ref": "#/components/schemas/SolNetworkCriterion"
}
]
}Variants§
SolAddressCriterion(SolAddressCriterion)
SolValueCriterion(SolValueCriterion)
SplAddressCriterion(SplAddressCriterion)
SplValueCriterion(SplValueCriterion)
MintAddressCriterion(MintAddressCriterion)
SolDataCriterion(SolDataCriterion)
ProgramIdCriterion(ProgramIdCriterion)
SolNetworkCriterion(SolNetworkCriterion)
Trait Implementations§
Source§impl Clone for SendEndUserSolTransactionCriteriaItem
impl Clone for SendEndUserSolTransactionCriteriaItem
Source§fn clone(&self) -> SendEndUserSolTransactionCriteriaItem
fn clone(&self) -> SendEndUserSolTransactionCriteriaItem
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 SendEndUserSolTransactionCriteriaItem
impl<'de> Deserialize<'de> for SendEndUserSolTransactionCriteriaItem
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<&SendEndUserSolTransactionCriteriaItem> for SendEndUserSolTransactionCriteriaItem
impl From<&SendEndUserSolTransactionCriteriaItem> for SendEndUserSolTransactionCriteriaItem
Source§fn from(value: &SendEndUserSolTransactionCriteriaItem) -> Self
fn from(value: &SendEndUserSolTransactionCriteriaItem) -> Self
Converts to this type from the input type.
Source§impl From<MintAddressCriterion> for SendEndUserSolTransactionCriteriaItem
impl From<MintAddressCriterion> for SendEndUserSolTransactionCriteriaItem
Source§fn from(value: MintAddressCriterion) -> Self
fn from(value: MintAddressCriterion) -> Self
Converts to this type from the input type.
Source§impl From<ProgramIdCriterion> for SendEndUserSolTransactionCriteriaItem
impl From<ProgramIdCriterion> for SendEndUserSolTransactionCriteriaItem
Source§fn from(value: ProgramIdCriterion) -> Self
fn from(value: ProgramIdCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SolAddressCriterion> for SendEndUserSolTransactionCriteriaItem
impl From<SolAddressCriterion> for SendEndUserSolTransactionCriteriaItem
Source§fn from(value: SolAddressCriterion) -> Self
fn from(value: SolAddressCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SolDataCriterion> for SendEndUserSolTransactionCriteriaItem
impl From<SolDataCriterion> for SendEndUserSolTransactionCriteriaItem
Source§fn from(value: SolDataCriterion) -> Self
fn from(value: SolDataCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SolNetworkCriterion> for SendEndUserSolTransactionCriteriaItem
impl From<SolNetworkCriterion> for SendEndUserSolTransactionCriteriaItem
Source§fn from(value: SolNetworkCriterion) -> Self
fn from(value: SolNetworkCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SolValueCriterion> for SendEndUserSolTransactionCriteriaItem
impl From<SolValueCriterion> for SendEndUserSolTransactionCriteriaItem
Source§fn from(value: SolValueCriterion) -> Self
fn from(value: SolValueCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SplAddressCriterion> for SendEndUserSolTransactionCriteriaItem
impl From<SplAddressCriterion> for SendEndUserSolTransactionCriteriaItem
Source§fn from(value: SplAddressCriterion) -> Self
fn from(value: SplAddressCriterion) -> Self
Converts to this type from the input type.
Source§impl From<SplValueCriterion> for SendEndUserSolTransactionCriteriaItem
impl From<SplValueCriterion> for SendEndUserSolTransactionCriteriaItem
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 SendEndUserSolTransactionCriteriaItem
impl RefUnwindSafe for SendEndUserSolTransactionCriteriaItem
impl Send for SendEndUserSolTransactionCriteriaItem
impl Sync for SendEndUserSolTransactionCriteriaItem
impl Unpin for SendEndUserSolTransactionCriteriaItem
impl UnsafeUnpin for SendEndUserSolTransactionCriteriaItem
impl UnwindSafe for SendEndUserSolTransactionCriteriaItem
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