CoseResultWithRet

Type Alias CoseResultWithRet 

Source
pub type CoseResultWithRet<A> = Result<A, CoseError>;
Expand description

Results that return something.

Aliased Type§

pub enum CoseResultWithRet<A> {
    Ok(A),
    Err(CoseError),
}

Variants§

§1.0.0

Ok(A)

Contains the success value

§1.0.0

Err(CoseError)

Contains the error value