pub struct SixelCounts {
pub rows: usize,
pub sixel_len: usize,
pub sixel_rem: usize,
pub rgb_len: usize,
pub hits: Vec<u8>,
pub threshold: u8,
}
Expand description
Common counts for Sixel encoding.
Fields§
§rows: usize
§sixel_len: usize
§sixel_rem: usize
§rgb_len: usize
§hits: Vec<u8>
§threshold: u8
Implementations§
Source§impl SixelCounts
impl SixelCounts
Auto Trait Implementations§
impl Freeze for SixelCounts
impl RefUnwindSafe for SixelCounts
impl Send for SixelCounts
impl Sync for SixelCounts
impl Unpin for SixelCounts
impl UnwindSafe for SixelCounts
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