pub type Sm4Result<T> = Result<T, Sm4Error>;
pub enum Sm4Result<T> { Ok(T), Err(Sm4Error), }
Contains the success value
Contains the error value