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