Type Alias SignResult

Source
pub type SignResult<T> = Result<T, SignError>;
Expand description

A result type for the signing/verifying operations

Aliased Type§

pub enum SignResult<T> {
    Ok(T),
    Err(SignError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SignError)

Contains the error value