pub type Result<T> = Result<T, SignError>;
Result type alias for rust-sign operations.
pub enum Result<T> { Ok(T), Err(SignError), }
Contains the success value
Contains the error value