pub trait ThreadAccount { // Required methods fn pubkey(&self) -> Pubkey; fn realloc(&mut self) -> Result<()>; }
Trait for reading and writing to a thread account.
Get the pubkey of the thread account.
Allocate more memory for the account.