pub struct Sequence {
pub literal_length: u32,
pub offset: u32,
pub match_length: u32,
}Expand description
A single decoded sequence.
Fields§
§literal_length: u32Number of literals to copy before the match.
offset: u32Offset back in the output buffer.
match_length: u32Number of bytes to copy from the match position.
Implementations§
Trait Implementations§
impl Copy for Sequence
impl Eq for Sequence
impl StructuralPartialEq for Sequence
Auto Trait Implementations§
impl Freeze for Sequence
impl RefUnwindSafe for Sequence
impl Send for Sequence
impl Sync for Sequence
impl Unpin for Sequence
impl UnwindSafe for Sequence
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