pub struct CompressorParts {
pub symbols: [Symbol; 255],
pub lengths: [u8; 255],
pub n_symbols: u8,
}Expand description
Persistable components of a Compressor.
Fields§
§symbols: [Symbol; 255]Symbols indexed by code.
lengths: [u8; 255]Symbol lengths in bytes.
n_symbols: u8Number of populated symbols, excluding the escape code.
Auto Trait Implementations§
impl Freeze for CompressorParts
impl RefUnwindSafe for CompressorParts
impl Send for CompressorParts
impl Sync for CompressorParts
impl Unpin for CompressorParts
impl UnsafeUnpin for CompressorParts
impl UnwindSafe for CompressorParts
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