pub trait UnstakeAccount {
    fn pubkey(&self) -> Pubkey;
    fn init(
        &mut self,
        amount: u64,
        authority: Pubkey,
        delegation: Pubkey,
        id: u64,
        worker: Pubkey
    ) -> Result<()>; }
Expand description

UnstakeAccount

Required Methods

Implementations on Foreign Types

Implementors