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