Trait Account

Source
pub trait Account {
    // Required method
    fn get(&mut self) -> (&mut u64, &mut [u8], &Address, bool);
}
Expand description

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

Required Methods§

Source

fn get(&mut self) -> (&mut u64, &mut [u8], &Address, bool)

Implementors§