pub type SignResult<T> = Result<T, SignError>;
A result type for the signing/verifying operations
pub enum SignResult<T> { Ok(T), Err(SignError), }
Contains the success value
Contains the error value