struct HuffmanInfo {
xsize: u16,
_ysize: u16,
color_cache: Option<ColorCache>,
image: Vec<u32>,
bits: u8,
mask: u16,
huffman_code_groups: Vec<[HuffmanTree; 5]>,
}
Fields§
§xsize: u16
§_ysize: u16
§color_cache: Option<ColorCache>
§image: Vec<u32>
§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 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 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
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