pub type CedResult<T> = Result<T, CedError>;
enum CedResult<T> { Ok(T), Err(CedError), }
Contains the success value
Contains the error value