Struct miniz_oxide::inflate::core::DecompressorOxide
source · [−]pub struct DecompressorOxide { /* private fields */ }
Expand description
Main decompression struct.
Implementations
sourceimpl DecompressorOxide
impl DecompressorOxide
sourcepub fn new() -> DecompressorOxide
pub fn new() -> DecompressorOxide
Create a new tinfl_decompressor with all fields set to 0.
sourcepub fn adler32(&self) -> Option<u32>
pub fn adler32(&self) -> Option<u32>
Returns the adler32 checksum of the currently decompressed data. Note: Will return Some(1) if decompressing zlib but ignoring adler32.
sourcepub fn adler32_header(&self) -> Option<u32>
pub fn adler32_header(&self) -> Option<u32>
Returns the adler32 that was read from the zlib header if it exists.
Trait Implementations
sourceimpl Default for DecompressorOxide
impl Default for DecompressorOxide
Auto Trait Implementations
impl RefUnwindSafe for DecompressorOxide
impl Send for DecompressorOxide
impl Sync for DecompressorOxide
impl Unpin for DecompressorOxide
impl UnwindSafe for DecompressorOxide
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more