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