#[non_exhaustive]pub struct Deblock {
pub strength: f64,
pub enabled: bool,
/* private fields */
}
Expand description
Deblock preprocessing configuration.
Note: This configuration is not supported.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.strength: f64
Set strength of the deblocker. Enter a value between 0 and 1. The higher the value, the stronger the block removal. 0 is no deblocking. The default is 0.
enabled: bool
Enable deblocker. The default is false
.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Deblock
Auto Trait Implementations§
impl Freeze for Deblock
impl RefUnwindSafe for Deblock
impl Send for Deblock
impl Sync for Deblock
impl Unpin for Deblock
impl UnwindSafe for Deblock
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