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