pub enum J2kMarkerSegment {
Sop,
Eph,
Tlm,
Plt,
Plm,
Ppm,
Ppt,
}Expand description
Optional JPEG 2000 marker segment requested for lossy encode output.
Variants§
Sop
SOP packet marker segments.
Eph
EPH packet header termination markers.
Tlm
TLM tile-part length marker segment.
Plt
PLT packet length marker segments.
Plm
PLM packet length marker segments.
Ppm
PPM packed packet-header marker segments.
Ppt
PPT packed packet-header marker segments.
Trait Implementations§
Source§impl Clone for J2kMarkerSegment
impl Clone for J2kMarkerSegment
Source§fn clone(&self) -> J2kMarkerSegment
fn clone(&self) -> J2kMarkerSegment
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 J2kMarkerSegment
Source§impl Debug for J2kMarkerSegment
impl Debug for J2kMarkerSegment
impl Eq for J2kMarkerSegment
Source§impl Hash for J2kMarkerSegment
impl Hash for J2kMarkerSegment
Source§impl PartialEq for J2kMarkerSegment
impl PartialEq for J2kMarkerSegment
impl StructuralPartialEq for J2kMarkerSegment
Auto Trait Implementations§
impl Freeze for J2kMarkerSegment
impl RefUnwindSafe for J2kMarkerSegment
impl Send for J2kMarkerSegment
impl Sync for J2kMarkerSegment
impl Unpin for J2kMarkerSegment
impl UnsafeUnpin for J2kMarkerSegment
impl UnwindSafe for J2kMarkerSegment
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