#[non_exhaustive]pub enum ParamBool {
SeiCheckHash = 0,
SuppressFaultyPictures = 6,
DisableDeblocking = 7,
DisableSAO = 8,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
SeiCheckHash = 0
Perform SEI hash check on decoded pictures.
SuppressFaultyPictures = 6
Do not output frames with decoding errors, default: false (output all images)
DisableDeblocking = 7
Disable deblocking
DisableSAO = 8
Disable SAO filter
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParamBool
impl RefUnwindSafe for ParamBool
impl Send for ParamBool
impl Sync for ParamBool
impl Unpin for ParamBool
impl UnwindSafe for ParamBool
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