Struct object::write::StreamingBuffer

source ·
pub struct StreamingBuffer<W> { /* private fields */ }
Expand description

A WritableBuffer that streams data to a Write implementation.

Self::result must be called to determine if an I/O error occurred during writing.

It is advisable to use a buffered writer like BufWriter instead of an unbuffered writer like File.

Implementations§

source§

impl<W> StreamingBuffer<W>

source

pub fn new(writer: W) -> Self

Create a new StreamingBuffer backed by the given writer.

source

pub fn into_inner(self) -> W

Unwraps this StreamingBuffer giving back the original writer.

source

pub fn result(&mut self) -> Result<(), Error>

Returns any error that occurred during writing.

Trait Implementations§

source§

impl<W: Debug> Debug for StreamingBuffer<W>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<W: Write> WritableBuffer for StreamingBuffer<W>

source§

fn len(&self) -> usize

Returns position/offset for data to be written at. Read more
source§

fn reserve(&mut self, _size: usize) -> Result<(), ()>

Reserves specified number of bytes in the buffer. Read more
source§

fn resize(&mut self, new_len: usize)

Writes zero bytes at the end of the buffer until the buffer has the specified length.
source§

fn write_bytes(&mut self, val: &[u8])

Writes the specified slice of bytes at the end of the buffer.
source§

fn write_pod<T: Pod>(&mut self, val: &T)
where Self: Sized,

Writes the specified Pod type at the end of the buffer.
source§

fn write_pod_slice<T: Pod>(&mut self, val: &[T])
where Self: Sized,

Writes the specified Pod slice at the end of the buffer.

Auto Trait Implementations§

§

impl<W> Freeze for StreamingBuffer<W>
where W: Freeze,

§

impl<W> !RefUnwindSafe for StreamingBuffer<W>

§

impl<W> Send for StreamingBuffer<W>
where W: Send,

§

impl<W> Sync for StreamingBuffer<W>
where W: Sync,

§

impl<W> Unpin for StreamingBuffer<W>
where W: Unpin,

§

impl<W> !UnwindSafe for StreamingBuffer<W>

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.