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>

source

pub fn from_slice_and_pos( slice: &'a mut [u8], position: usize, ) -> OutputBuffer<'a>

source

pub const fn position(&self) -> usize

source

pub fn set_position(&mut self, position: usize)

source

pub fn write_byte(&mut self, byte: u8)

Write a byte to the current position and increment

Assumes that there is space.

source

pub fn write_slice(&mut self, data: &[u8])

Write a slice to the current position and increment

Assumes that there is space.

source

pub const fn bytes_left(&self) -> usize

source

pub const fn get_ref(&self) -> &[u8]

source

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.