pub struct ReversibleDwt53FirstLevel {
pub ll: Vec<i32>,
pub hl: Vec<i32>,
pub lh: Vec<i32>,
pub hh: Vec<i32>,
pub low_width: usize,
pub low_height: usize,
pub high_width: usize,
pub high_height: usize,
}Expand description
One separable single-level reversible integer 5/3 transform result.
Fields§
§ll: Vec<i32>Low-horizontal, low-vertical band.
hl: Vec<i32>High-horizontal, low-vertical band.
lh: Vec<i32>Low-horizontal, high-vertical band.
hh: Vec<i32>High-horizontal, high-vertical band.
low_width: usizeWidth of horizontally low-pass bands.
low_height: usizeHeight of vertically low-pass bands.
high_width: usizeWidth of horizontally high-pass bands.
high_height: usizeHeight of vertically high-pass bands.
Trait Implementations§
Source§impl Clone for ReversibleDwt53FirstLevel
impl Clone for ReversibleDwt53FirstLevel
Source§fn clone(&self) -> ReversibleDwt53FirstLevel
fn clone(&self) -> ReversibleDwt53FirstLevel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReversibleDwt53FirstLevel
impl Debug for ReversibleDwt53FirstLevel
impl Eq for ReversibleDwt53FirstLevel
Source§impl PartialEq for ReversibleDwt53FirstLevel
impl PartialEq for ReversibleDwt53FirstLevel
Source§fn eq(&self, other: &ReversibleDwt53FirstLevel) -> bool
fn eq(&self, other: &ReversibleDwt53FirstLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReversibleDwt53FirstLevel
Auto Trait Implementations§
impl Freeze for ReversibleDwt53FirstLevel
impl RefUnwindSafe for ReversibleDwt53FirstLevel
impl Send for ReversibleDwt53FirstLevel
impl Sync for ReversibleDwt53FirstLevel
impl Unpin for ReversibleDwt53FirstLevel
impl UnsafeUnpin for ReversibleDwt53FirstLevel
impl UnwindSafe for ReversibleDwt53FirstLevel
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