pub trait PoolAccount {
    fn new(&mut self) -> Result<()>;
    fn cycle(
        &mut self,
        config: &Account<'_, Config>,
        delegate: Pubkey
    ) -> Result<()>; }
Expand description

PoolAccount

Required Methods

Implementations on Foreign Types

Implementors