Trait solana_sdk::account_info::Account[][src]

pub trait Account {
    pub fn get(&mut self) -> (&mut u64, &mut [u8], &Pubkey, bool, u64);
}

Provides information required to construct an AccountInfo, used in conversion implementations.

Required methods

pub fn get(&mut self) -> (&mut u64, &mut [u8], &Pubkey, bool, u64)[src]

Loading content...

Implementors

impl Account for Account[src]

Return the information required to construct an AccountInfo. Used by the AccountInfo conversion implementations.

Loading content...