pub enum ResidentDwtSubbandKind {
LowLow,
HighLow,
LowHigh,
HighHigh,
}Expand description
Wavelet subband represented by a resident DWT buffer.
Variants§
LowLow
Low-low subband.
HighLow
High-low subband.
LowHigh
Low-high subband.
HighHigh
High-high subband.
Trait Implementations§
Source§impl Clone for ResidentDwtSubbandKind
impl Clone for ResidentDwtSubbandKind
Source§fn clone(&self) -> ResidentDwtSubbandKind
fn clone(&self) -> ResidentDwtSubbandKind
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 moreimpl Copy for ResidentDwtSubbandKind
Source§impl Debug for ResidentDwtSubbandKind
impl Debug for ResidentDwtSubbandKind
impl Eq for ResidentDwtSubbandKind
Source§impl PartialEq for ResidentDwtSubbandKind
impl PartialEq for ResidentDwtSubbandKind
Source§fn eq(&self, other: &ResidentDwtSubbandKind) -> bool
fn eq(&self, other: &ResidentDwtSubbandKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResidentDwtSubbandKind
Auto Trait Implementations§
impl Freeze for ResidentDwtSubbandKind
impl RefUnwindSafe for ResidentDwtSubbandKind
impl Send for ResidentDwtSubbandKind
impl Sync for ResidentDwtSubbandKind
impl Unpin for ResidentDwtSubbandKind
impl UnsafeUnpin for ResidentDwtSubbandKind
impl UnwindSafe for ResidentDwtSubbandKind
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