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