Type Alias cyphal::CyphalResult

source ·
pub type CyphalResult<T> = Result<T, CyphalError>;
Expand description

The result of a Cyphal operation. On failure, a CyphalError will be included.

Aliased Type§

enum CyphalResult<T> {
    Ok(T),
    Err(CyphalError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CyphalError)

Contains the error value