struct HuffmanInfo {
xsize: u16,
_ysize: u16,
color_cache: Option<ColorCache>,
image: Vec<u16>,
bits: u8,
mask: u16,
huffman_code_groups: Vec<[HuffmanTree; 5]>,
}
Fields§
§xsize: u16
§_ysize: u16
§color_cache: Option<ColorCache>
§image: Vec<u16>
§bits: u8
§mask: u16
§huffman_code_groups: Vec<[HuffmanTree; 5]>
Implementations§
Source§impl HuffmanInfo
impl HuffmanInfo
fn get_huff_index(&self, x: u16, y: u16) -> usize
Trait Implementations§
Source§impl Clone for HuffmanInfo
impl Clone for HuffmanInfo
Source§fn clone(&self) -> HuffmanInfo
fn clone(&self) -> HuffmanInfo
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 moreAuto Trait Implementations§
impl Freeze for HuffmanInfo
impl RefUnwindSafe for HuffmanInfo
impl Send for HuffmanInfo
impl Sync for HuffmanInfo
impl Unpin for HuffmanInfo
impl UnwindSafe for HuffmanInfo
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