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