Enum h264_reader::nal::sps::ScalingMatrixError
source · pub enum ScalingMatrixError {
ReaderError(BitReaderError),
DeltaScaleOutOfRange(i32),
}
Variants§
ReaderError(BitReaderError)
DeltaScaleOutOfRange(i32)
The delta_scale
field must be between -128 and 127 inclusive.
Trait Implementations§
source§impl Debug for ScalingMatrixError
impl Debug for ScalingMatrixError
source§impl From<BitReaderError> for ScalingMatrixError
impl From<BitReaderError> for ScalingMatrixError
source§fn from(e: BitReaderError) -> Self
fn from(e: BitReaderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ScalingMatrixError
impl !RefUnwindSafe for ScalingMatrixError
impl Send for ScalingMatrixError
impl Sync for ScalingMatrixError
impl Unpin for ScalingMatrixError
impl !UnwindSafe for ScalingMatrixError
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