pub type Result<T> = Result<T, CfsError>;
A specialized Result type for CFE operations.
Result
pub enum Result<T> { Ok(T), Err(CfsError), }
Contains the success value
Contains the error value