pub enum RtspSourceError {
Ffmpeg(Error),
SeekUnsupported,
}Expand description
Errors specific to RtspSource. Converts into the crate-wide Error
via ? (see crate::error::Error).
Variants§
Trait Implementations§
Source§impl Debug for RtspSourceError
impl Debug for RtspSourceError
Source§impl Display for RtspSourceError
impl Display for RtspSourceError
Source§impl Error for RtspSourceError
impl Error for RtspSourceError
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 RtspSourceError
impl From<Error> for RtspSourceError
Source§impl From<RtspSourceError> for Error
impl From<RtspSourceError> for Error
Source§fn from(source: RtspSourceError) -> Self
fn from(source: RtspSourceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RtspSourceError
impl RefUnwindSafe for RtspSourceError
impl Send for RtspSourceError
impl Sync for RtspSourceError
impl Unpin for RtspSourceError
impl UnsafeUnpin for RtspSourceError
impl UnwindSafe for RtspSourceError
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