pub struct UnfilterBuf<'data> { /* private fields */ }Expand description
A buffer for decompression and in-place filtering of PNG rowlines.
The underlying data structure is a vector, with additional markers dividing
the vector into specific regions of bytes - see UnfilterRegion for more
details.
Auto Trait Implementations§
impl<'data> Freeze for UnfilterBuf<'data>
impl<'data> RefUnwindSafe for UnfilterBuf<'data>
impl<'data> Send for UnfilterBuf<'data>
impl<'data> Sync for UnfilterBuf<'data>
impl<'data> Unpin for UnfilterBuf<'data>
impl<'data> UnsafeUnpin for UnfilterBuf<'data>
impl<'data> !UnwindSafe for UnfilterBuf<'data>
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