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

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

Required Methods

Implementors