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