pub struct LzwEncoder {
pub lossiness: u8,
/* private fields */
}Expand description
A Lempel-Ziv-Welch encoder specialized for GIF89a.
Fields§
§lossiness: u8Degree of lossiness (0 = lossless, >0 = allow neighbor matching).
Implementations§
Auto Trait Implementations§
impl Freeze for LzwEncoder
impl RefUnwindSafe for LzwEncoder
impl Send for LzwEncoder
impl Sync for LzwEncoder
impl Unpin for LzwEncoder
impl UnwindSafe for LzwEncoder
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