pub struct Deflate64;Available on crate feature
deflate64 only.Expand description
Zero-sized marker type implementing Algorithm for deflate64.
Trait Implementations§
Source§impl Algorithm for Deflate64
impl Algorithm for Deflate64
Source§const NAME: &'static str = "deflate64"
const NAME: &'static str = "deflate64"
Stable, lowercase name used by the runtime factory (
"rle", "gzip").type Encoder = Encoder
type Decoder = Decoder
type EncoderConfig = EncoderConfig
type DecoderConfig = DecoderConfig
Source§fn encoder_with(c: Self::EncoderConfig) -> Encoder
fn encoder_with(c: Self::EncoderConfig) -> Encoder
Build an encoder with the supplied configuration.
Source§fn decoder_with(c: Self::DecoderConfig) -> Decoder
fn decoder_with(c: Self::DecoderConfig) -> Decoder
Build a decoder with the supplied configuration.
impl Copy for Deflate64
Auto Trait Implementations§
impl Freeze for Deflate64
impl RefUnwindSafe for Deflate64
impl Send for Deflate64
impl Sync for Deflate64
impl Unpin for Deflate64
impl UnsafeUnpin for Deflate64
impl UnwindSafe for Deflate64
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