pub struct Lz77Match {
pub offset: isize,
pub length: usize,
}Expand description
Represents a match in the LZ77 algorithm.
Fields§
§offset: isizeOffset of the LZ77 match, expressed as a negative number.
length: usizeLength of the match.
Auto Trait Implementations§
impl Freeze for Lz77Match
impl RefUnwindSafe for Lz77Match
impl Send for Lz77Match
impl Sync for Lz77Match
impl Unpin for Lz77Match
impl UnwindSafe for Lz77Match
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