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