pub struct LoopFilterParams {
pub level: u8,
pub sharpness: u8,
pub edge_strength: u8,
}Expand description
Deblocking filter strength parameters.
Fields§
§level: u8Filter level (0-63).
sharpness: u8Sharp threshold.
edge_strength: u8Block edge strength (0-3).
Trait Implementations§
Source§impl Clone for LoopFilterParams
impl Clone for LoopFilterParams
Source§fn clone(&self) -> LoopFilterParams
fn clone(&self) -> LoopFilterParams
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 LoopFilterParams
impl Debug for LoopFilterParams
Source§impl Default for LoopFilterParams
impl Default for LoopFilterParams
impl Copy for LoopFilterParams
Auto Trait Implementations§
impl Freeze for LoopFilterParams
impl RefUnwindSafe for LoopFilterParams
impl Send for LoopFilterParams
impl Sync for LoopFilterParams
impl Unpin for LoopFilterParams
impl UnsafeUnpin for LoopFilterParams
impl UnwindSafe for LoopFilterParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more