pub type Result<T> = Result<T, PldmError>;
PLDM protocol return type
pub enum Result<T> { Ok(T), Err(PldmError), }
Contains the success value
Contains the error value