Enum mpl_token_auth_rules::payload::PayloadType
source · #[repr(C)]pub enum PayloadType {
Pubkey(Pubkey),
Seeds(SeedsVec),
MerkleProof(ProofInfo),
Number(u64),
}Expand description
Variants representing the different types represented in a payload.
Variants§
Pubkey(Pubkey)
A plain Pubkey.
Seeds(SeedsVec)
PDA derivation seeds.
MerkleProof(ProofInfo)
A merkle proof.
Number(u64)
A plain u64 used for Amount.
Trait Implementations§
source§impl BorshDeserialize for PayloadType
impl BorshDeserialize for PayloadType
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
source§impl BorshSerialize for PayloadType
impl BorshSerialize for PayloadType
source§impl Clone for PayloadType
impl Clone for PayloadType
source§fn clone(&self) -> PayloadType
fn clone(&self) -> PayloadType
Returns a copy 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 Debug for PayloadType
impl Debug for PayloadType
source§impl<'de> Deserialize<'de> for PayloadType
impl<'de> Deserialize<'de> for PayloadType
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 EnumExt for PayloadType
impl EnumExt for PayloadType
source§impl PartialEq for PayloadType
impl PartialEq for PayloadType
source§fn eq(&self, other: &PayloadType) -> bool
fn eq(&self, other: &PayloadType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for PayloadType
impl Serialize for PayloadType
impl Eq for PayloadType
impl StructuralEq for PayloadType
impl StructuralPartialEq for PayloadType
Auto Trait Implementations§
impl RefUnwindSafe for PayloadType
impl Send for PayloadType
impl Sync for PayloadType
impl Unpin for PayloadType
impl UnwindSafe for PayloadType
Blanket Implementations§
§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>
§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, _digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more