pub struct GzipFile<'a> {
pub header: GzipHeader<'a>,
pub footer: GzipFooter,
pub compressed_blocks: Vec<u8>,
}
Fields§
§header: GzipHeader<'a>
§compressed_blocks: Vec<u8>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for GzipFile<'a>
impl<'a> RefUnwindSafe for GzipFile<'a>
impl<'a> Send for GzipFile<'a>
impl<'a> Sync for GzipFile<'a>
impl<'a> Unpin for GzipFile<'a>
impl<'a> UnwindSafe for GzipFile<'a>
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