pub type EncapResult = Result<(SharedSecret, SerializedPublicKey), HpkeError>;
pub enum EncapResult { Ok((Vec<u8>, Vec<u8>)), Err(HpkeError), }
Contains the success value
Contains the error value