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),
}