pub enum FrameError {
MismatchedPlaneStride {
planes: usize,
strides: usize,
},
UnsupportedPixelFormat(PixelFormat),
UnsupportedSampleFormat(SampleFormat),
InvalidPlaneCount {
expected: usize,
actual: usize,
},
}Expand description
Error type for frame operations.
Variants§
MismatchedPlaneStride
The number of planes does not match the number of strides.
UnsupportedPixelFormat(PixelFormat)
Cannot allocate a frame for an unknown pixel format.
UnsupportedSampleFormat(SampleFormat)
Cannot allocate an audio frame for an unknown sample format.
InvalidPlaneCount
The number of planes does not match the expected count for the format.
Trait Implementations§
Source§impl Clone for FrameError
impl Clone for FrameError
Source§fn clone(&self) -> FrameError
fn clone(&self) -> FrameError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FrameError
impl Debug for FrameError
Source§impl Display for FrameError
impl Display for FrameError
Source§impl Error for FrameError
impl Error for FrameError
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 FrameError
impl PartialEq for FrameError
impl Eq for FrameError
impl StructuralPartialEq for FrameError
Auto Trait Implementations§
impl Freeze for FrameError
impl RefUnwindSafe for FrameError
impl Send for FrameError
impl Sync for FrameError
impl Unpin for FrameError
impl UnsafeUnpin for FrameError
impl UnwindSafe for FrameError
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