pub enum RtspSinkError {
Ffmpeg(Error),
UnsupportedBuffer(&'static str),
InvalidUrl,
}Expand description
Errors produced while opening or writing an RtspSink.
Variants§
Trait Implementations§
Source§impl Debug for RtspSinkError
impl Debug for RtspSinkError
Source§impl Display for RtspSinkError
impl Display for RtspSinkError
Source§impl Error for RtspSinkError
impl Error for RtspSinkError
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 From<Error> for RtspSinkError
impl From<Error> for RtspSinkError
Source§impl From<RtspSinkError> for Error
impl From<RtspSinkError> for Error
Source§fn from(source: RtspSinkError) -> Self
fn from(source: RtspSinkError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RtspSinkError
impl RefUnwindSafe for RtspSinkError
impl Send for RtspSinkError
impl Sync for RtspSinkError
impl Unpin for RtspSinkError
impl UnsafeUnpin for RtspSinkError
impl UnwindSafe for RtspSinkError
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