pub struct J2kComponentMapping {
pub component_index: u16,
pub mapping_type: J2kComponentMappingType,
}Expand description
Parsed JP2/JPH Component Mapping box entry.
Fields§
§component_index: u16Source codestream component index.
mapping_type: J2kComponentMappingTypeMapping operation for this output channel.
Trait Implementations§
Source§impl Clone for J2kComponentMapping
impl Clone for J2kComponentMapping
Source§fn clone(&self) -> J2kComponentMapping
fn clone(&self) -> J2kComponentMapping
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 J2kComponentMapping
Source§impl Debug for J2kComponentMapping
impl Debug for J2kComponentMapping
impl Eq for J2kComponentMapping
Source§impl Hash for J2kComponentMapping
impl Hash for J2kComponentMapping
Source§impl PartialEq for J2kComponentMapping
impl PartialEq for J2kComponentMapping
impl StructuralPartialEq for J2kComponentMapping
Auto Trait Implementations§
impl Freeze for J2kComponentMapping
impl RefUnwindSafe for J2kComponentMapping
impl Send for J2kComponentMapping
impl Sync for J2kComponentMapping
impl Unpin for J2kComponentMapping
impl UnsafeUnpin for J2kComponentMapping
impl UnwindSafe for J2kComponentMapping
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