[−][src]Trait solana_sdk::program_pack::Pack
Safely and efficiently (de)serialize account state
Associated Constants
Loading content...Provided methods
fn get_packed_len() -> usize
Get the packed length
fn unpack(input: &[u8]) -> Result<Self, ProgramError> where
Self: IsInitialized,
Self: IsInitialized,
Unpack from slice and check if initialized
fn unpack_unchecked(input: &[u8]) -> Result<Self, ProgramError>
Unpack from slice without checking if initialized
fn pack(src: Self, dst: &mut [u8]) -> Result<(), ProgramError>
Pack into slice