pub enum BitstreamKind {
Unknown,
BareCodestream,
Container,
Invalid,
}
Expand description
Structure of the decoded bitstream.
Variants§
Unknown
Decoder can’t determine structure of the bitstream.
BareCodestream
Bitstream is a direct JPEG XL codestream without box structure.
Container
Bitstream is a JPEG XL container with box structure.
Invalid
Bitstream is not a valid JPEG XL image.
Trait Implementations§
Source§impl Clone for BitstreamKind
impl Clone for BitstreamKind
Source§fn clone(&self) -> BitstreamKind
fn clone(&self) -> BitstreamKind
Returns a copy of the value. Read more
1.0.0 · 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 BitstreamKind
impl Debug for BitstreamKind
Source§impl PartialEq for BitstreamKind
impl PartialEq for BitstreamKind
impl Copy for BitstreamKind
impl Eq for BitstreamKind
impl StructuralPartialEq for BitstreamKind
Auto Trait Implementations§
impl Freeze for BitstreamKind
impl RefUnwindSafe for BitstreamKind
impl Send for BitstreamKind
impl Sync for BitstreamKind
impl Unpin for BitstreamKind
impl UnwindSafe for BitstreamKind
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