pub type SealingKeysSealResult = Result<Vec<u8>, SealError>;
pub enum SealingKeysSealResult { Ok(Vec<u8>), Err(SealError), }
Contains the success value
Contains the error value