pub type GetStorageResult = Result<Option<Vec<u8>>, ContractAccessError>;
Result type of a get_storage call.
get_storage
enum GetStorageResult { Ok(Option<Vec<u8>>), Err(ContractAccessError), }
Contains the success value
Contains the error value