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