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