pub trait MangoAccountLoader<'a> {
    // Required methods
    fn load_full(self) -> Result<MangoAccountLoadedRefCell<'a>>;
    fn load_full_mut(self) -> Result<MangoAccountLoadedRefCellMut<'a>>;
    fn load_full_init(self) -> Result<MangoAccountLoadedRefCellMut<'a>>;
}
Expand description

Trait to allow a AccountLoader to create an accessor for the full account.

Required Methods§

Implementations on Foreign Types§

source§

impl<'a, 'info: 'a> MangoAccountLoader<'a> for &'a AccountLoader<'info, MangoAccountFixed>

Implementors§