pub enum J2kSubBandType {
LowLow,
HighLow,
LowHigh,
HighHigh,
}Expand description
Adapter classic J2K sub-band kind for backend experimentation.
Variants§
LowLow
Low-low sub-band.
HighLow
High-low sub-band.
LowHigh
Low-high sub-band.
HighHigh
High-high sub-band.
Trait Implementations§
Source§impl Clone for J2kSubBandType
impl Clone for J2kSubBandType
Source§fn clone(&self) -> J2kSubBandType
fn clone(&self) -> J2kSubBandType
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 J2kSubBandType
Source§impl Debug for J2kSubBandType
impl Debug for J2kSubBandType
impl Eq for J2kSubBandType
Source§impl PartialEq for J2kSubBandType
impl PartialEq for J2kSubBandType
Source§fn eq(&self, other: &J2kSubBandType) -> bool
fn eq(&self, other: &J2kSubBandType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for J2kSubBandType
Auto Trait Implementations§
impl Freeze for J2kSubBandType
impl RefUnwindSafe for J2kSubBandType
impl Send for J2kSubBandType
impl Sync for J2kSubBandType
impl Unpin for J2kSubBandType
impl UnsafeUnpin for J2kSubBandType
impl UnwindSafe for J2kSubBandType
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