Enum libflate::lz77::Code [−][src]
Expand description
A LZ77 encoded data.
Variants
Literal(u8)Literal byte.
Backward pointer to shared data.
Fields of Pointer
length: u16Length of the shared data.
The values must be limited to MAX_LENGTH.
backward_distance: u16Distance between current position and start position of the shared data.
The values must be limited to MAX_DISTANCE.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Code
impl UnwindSafe for Code
Blanket Implementations
Mutably borrows from an owned value. Read more