pub trait RegistryAccount { // Required methods fn init(&mut self) -> Result<()>; fn hash_nonce(&mut self) -> Result<()>; }
RegistryAccount