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