Struct switchboard_solana::prelude::TokenAccount
pub struct TokenAccount(/* private fields */);
Implementations§
§impl TokenAccount
impl TokenAccount
Methods from Deref<Target = Account>§
pub fn is_owned_by_system_program_or_incinerator(&self) -> bool
pub fn is_owned_by_system_program_or_incinerator(&self) -> bool
Checks if a token Account’s owner is the system_program or the incinerator
Trait Implementations§
§impl AccountDeserialize for TokenAccount
impl AccountDeserialize for TokenAccount
§fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<TokenAccount, Error>
fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<TokenAccount, Error>
Deserializes account data without checking the account discriminator.
This should only be used on account initialization, when the bytes of
the account are zeroed.
§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
.§impl AccountSerialize for TokenAccount
impl AccountSerialize for TokenAccount
§impl Clone for TokenAccount
impl Clone for TokenAccount
§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 more§impl Debug for TokenAccount
impl Debug for TokenAccount
§impl Default for TokenAccount
impl Default for TokenAccount
§fn default() -> TokenAccount
fn default() -> TokenAccount
Returns the “default value” for a type. Read more
§impl PartialEq for TokenAccount
impl PartialEq for TokenAccount
§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 ==
.§impl Deref for TokenAccount
impl Deref for TokenAccount
impl StructuralPartialEq for TokenAccount
Auto Trait Implementations§
impl RefUnwindSafe for TokenAccount
impl Send for TokenAccount
impl Sync for TokenAccount
impl Unpin for TokenAccount
impl UnwindSafe for TokenAccount
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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