pub type ConnResult<T> = Result<T, ConnError>;
The result type associated with ConnError.
enum ConnResult<T> { Ok(T), Err(ConnError), }
Contains the success value
Contains the error value