pub struct EncodedJ2kCodeBlock {
pub data: Vec<u8>,
pub segments: Vec<J2kCodeBlockSegment>,
pub number_of_coding_passes: u8,
pub missing_bit_planes: u8,
}Expand description
Encoded classic JPEG 2000 code-block payload.
Fields§
§data: Vec<u8>Combined payload bytes for all coded segments in this code block.
segments: Vec<J2kCodeBlockSegment>Coded segments for the code block.
number_of_coding_passes: u8Number of coding passes present for this code block.
missing_bit_planes: u8Missing most-significant bit planes for this code block.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EncodedJ2kCodeBlock
impl RefUnwindSafe for EncodedJ2kCodeBlock
impl Send for EncodedJ2kCodeBlock
impl Sync for EncodedJ2kCodeBlock
impl Unpin for EncodedJ2kCodeBlock
impl UnsafeUnpin for EncodedJ2kCodeBlock
impl UnwindSafe for EncodedJ2kCodeBlock
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