Type Alias ic_cbor::CborResult

source ·
pub type CborResult<T = ()> = 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