pub type MSResult<T> = Result<T, MSError>;
A specialized library Result type.
Result
enum MSResult<T> { Ok(T), Err(MSError), }
Contains the success value
Contains the error value