pub struct CodedCbHeader {
pub pass_length: [u32; 2],
pub num_passes: u32,
pub k_max: u32,
pub missing_msbs: u32,
}Expand description
Header information for a coded code-block.
Fields§
§pass_length: [u32; 2]Lengths of coding passes.
num_passes: u32Number of coding passes (1 = CUP, 2 = CUP+SPP, 3 = CUP+SPP+MRP).
k_max: u32Maximum number of magnitude bits.
missing_msbs: u32Number of missing most significant bit-planes.
Trait Implementations§
Source§impl Clone for CodedCbHeader
impl Clone for CodedCbHeader
Source§fn clone(&self) -> CodedCbHeader
fn clone(&self) -> CodedCbHeader
Returns a duplicate 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 CodedCbHeader
impl Debug for CodedCbHeader
Source§impl Default for CodedCbHeader
impl Default for CodedCbHeader
Source§fn default() -> CodedCbHeader
fn default() -> CodedCbHeader
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CodedCbHeader
impl RefUnwindSafe for CodedCbHeader
impl Send for CodedCbHeader
impl Sync for CodedCbHeader
impl Unpin for CodedCbHeader
impl UnsafeUnpin for CodedCbHeader
impl UnwindSafe for CodedCbHeader
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