pub enum RtpParametersError {
InvalidAptParameter(Cow<'static, str>),
}
Expand description
Error caused by invalid RTP parameters.
Variants§
Trait Implementations§
Source§impl Debug for RtpParametersError
impl Debug for RtpParametersError
Source§impl Display for RtpParametersError
impl Display for RtpParametersError
Source§impl Error for RtpParametersError
impl Error for RtpParametersError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for RtpParametersError
impl PartialEq for RtpParametersError
impl Eq for RtpParametersError
impl StructuralPartialEq for RtpParametersError
Auto Trait Implementations§
impl Freeze for RtpParametersError
impl RefUnwindSafe for RtpParametersError
impl Send for RtpParametersError
impl Sync for RtpParametersError
impl Unpin for RtpParametersError
impl UnwindSafe for RtpParametersError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more