pub struct DeblockState {
pub levels: [u8; 4],
pub sharpness: u8,
pub deltas_enabled: bool,
pub delta_updates_enabled: bool,
pub ref_deltas: [i8; 8],
pub mode_deltas: [i8; 2],
pub block_deltas_enabled: bool,
pub block_delta_shift: u8,
pub block_delta_multi: bool,
}Fields§
§levels: [u8; 4]§sharpness: u8§deltas_enabled: bool§delta_updates_enabled: bool§ref_deltas: [i8; 8]§mode_deltas: [i8; 2]§block_deltas_enabled: bool§block_delta_shift: u8§block_delta_multi: boolTrait Implementations§
Source§impl Clone for DeblockState
impl Clone for DeblockState
Source§fn clone(&self) -> DeblockState
fn clone(&self) -> DeblockState
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 DeblockState
impl Debug for DeblockState
Source§impl Default for DeblockState
impl Default for DeblockState
impl Copy for DeblockState
Auto Trait Implementations§
impl Freeze for DeblockState
impl RefUnwindSafe for DeblockState
impl Send for DeblockState
impl Sync for DeblockState
impl Unpin for DeblockState
impl UnwindSafe for DeblockState
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