Struct miniz_oxide::inflate::output_buffer::OutputBuffer
source · pub struct OutputBuffer<'a> {
slice: &'a mut [u8],
position: usize,
}
Expand description
A wrapper for the output slice used when decompressing.
Using this rather than Cursor
lets us implement the writing methods directly on
the buffer and lets us use a usize rather than u64 for the position which helps with
performance on 32-bit systems.
Fields§
§slice: &'a mut [u8]
§position: usize
Implementations§
source§impl<'a> OutputBuffer<'a>
impl<'a> OutputBuffer<'a>
pub fn from_slice_and_pos( slice: &'a mut [u8], position: usize, ) -> OutputBuffer<'a>
pub const fn position(&self) -> usize
pub fn set_position(&mut self, position: usize)
sourcepub fn write_byte(&mut self, byte: u8)
pub fn write_byte(&mut self, byte: u8)
Write a byte to the current position and increment
Assumes that there is space.
sourcepub fn write_slice(&mut self, data: &[u8])
pub fn write_slice(&mut self, data: &[u8])
Write a slice to the current position and increment
Assumes that there is space.
pub const fn bytes_left(&self) -> usize
pub const fn get_ref(&self) -> &[u8] ⓘ
pub fn get_mut(&mut self) -> &mut [u8] ⓘ
Auto Trait Implementations§
impl<'a> Freeze for OutputBuffer<'a>
impl<'a> RefUnwindSafe for OutputBuffer<'a>
impl<'a> Send for OutputBuffer<'a>
impl<'a> Sync for OutputBuffer<'a>
impl<'a> Unpin for OutputBuffer<'a>
impl<'a> !UnwindSafe for OutputBuffer<'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