Struct anchor_spl::token_interface::TokenAccount
source · pub struct TokenAccount(_);Methods from Deref<Target = Account>§
Trait Implementations§
source§impl AccountDeserialize for TokenAccount
impl AccountDeserialize for TokenAccount
source§fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<Self>
fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<Self>
Deserializes account data without checking the account discriminator.
This should only be used on account initialization, when the bytes of
the account are zeroed.
source§fn try_deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn try_deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes previously initialized account data. Should fail for all
uninitialized accounts, where the bytes are zeroed. Implementations
should be unique to a particular account type so that one can never
successfully deserialize the data of one account type into another.
For example, if the SPL token program were to implement this trait,
it should be impossible to deserialize a
Mint account into a token
Account.source§impl AccountSerialize for TokenAccount
impl AccountSerialize for TokenAccount
source§impl Clone for TokenAccount
impl Clone for TokenAccount
source§fn clone(&self) -> TokenAccount
fn clone(&self) -> TokenAccount
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 TokenAccount
impl Debug for TokenAccount
source§impl Default for TokenAccount
impl Default for TokenAccount
source§fn default() -> TokenAccount
fn default() -> TokenAccount
Returns the “default value” for a type. Read more
source§impl Deref for TokenAccount
impl Deref for TokenAccount
source§impl PartialEq<TokenAccount> for TokenAccount
impl PartialEq<TokenAccount> for TokenAccount
source§fn eq(&self, other: &TokenAccount) -> bool
fn eq(&self, other: &TokenAccount) -> bool
This method tests for
self and other values to be equal, and is used
by ==.