cbor

Type Alias CborResult

Source
pub type CborResult<T> = Result<T, CborError>;
Expand description

Type synonym for Result<T, CborError>.

Aliased Type§

enum CborResult<T> {
    Ok(T),
    Err(CborError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CborError)

Contains the error value