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