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