enum TryReceiveFrameError {
CreateAvFrame(AvFrameError),
CannotQueueFlushEvent(Error),
ChangeResolutionError(ChangeResolutionError),
}Variants§
CreateAvFrame(AvFrameError)
CannotQueueFlushEvent(Error)
ChangeResolutionError(ChangeResolutionError)
Trait Implementations§
Source§impl Debug for TryReceiveFrameError
impl Debug for TryReceiveFrameError
Source§impl Display for TryReceiveFrameError
impl Display for TryReceiveFrameError
Source§impl Error for TryReceiveFrameError
impl Error for TryReceiveFrameError
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<AvFrameError> for TryReceiveFrameError
impl From<AvFrameError> for TryReceiveFrameError
Source§fn from(source: AvFrameError) -> Self
fn from(source: AvFrameError) -> Self
Converts to this type from the input type.
Source§impl From<ChangeResolutionError> for TryReceiveFrameError
impl From<ChangeResolutionError> for TryReceiveFrameError
Source§fn from(source: ChangeResolutionError) -> Self
fn from(source: ChangeResolutionError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for TryReceiveFrameError
impl From<Error> for TryReceiveFrameError
Source§impl From<TryReceiveFrameError> for TryDecodeError
impl From<TryReceiveFrameError> for TryDecodeError
Source§fn from(source: TryReceiveFrameError) -> Self
fn from(source: TryReceiveFrameError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TryReceiveFrameError
impl RefUnwindSafe for TryReceiveFrameError
impl Send for TryReceiveFrameError
impl Sync for TryReceiveFrameError
impl Unpin for TryReceiveFrameError
impl UnwindSafe for TryReceiveFrameError
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