pub type Result<T> = Result<T, M2MError>;
Result type alias for M2M operations.
pub enum Result<T> { Ok(T), Err(M2MError), }
Contains the success value
Contains the error value