Struct bitstream_io::write::ByteWriter
source · pub struct ByteWriter<W: Write, E: Endianness> { /* private fields */ }
Expand description
For writing aligned bytes to a stream of bytes in a given endianness.
This only writes aligned values and maintains no internal state.
Implementations§
source§impl<W: Write, E: Endianness> ByteWriter<W, E>
impl<W: Write, E: Endianness> ByteWriter<W, E>
sourcepub fn new(writer: W) -> ByteWriter<W, E>
pub fn new(writer: W) -> ByteWriter<W, E>
Wraps a ByteWriter around something that implements Write
sourcepub fn endian(writer: W, _endian: E) -> ByteWriter<W, E>
pub fn endian(writer: W, _endian: E) -> ByteWriter<W, E>
Wraps a BitWriter around something that implements Write
with the given endianness.
sourcepub fn into_writer(self) -> W
pub fn into_writer(self) -> W
Unwraps internal writer and disposes of ByteWriter
.
Any unwritten partial bits are discarded.
sourcepub fn into_bitwriter(self) -> BitWriter<W, E>
pub fn into_bitwriter(self) -> BitWriter<W, E>
Converts ByteWriter
to BitWriter
in the same endianness.
Trait Implementations§
source§impl<W: Write, E: Endianness> ByteWrite for ByteWriter<W, E>
impl<W: Write, E: Endianness> ByteWrite for ByteWriter<W, E>
source§fn write<N: Numeric>(&mut self, value: N) -> Result<()>
fn write<N: Numeric>(&mut self, value: N) -> Result<()>
Writes whole numeric value to stream Read more
source§fn write_bytes(&mut self, buf: &[u8]) -> Result<()>
fn write_bytes(&mut self, buf: &[u8]) -> Result<()>
Writes the entirety of a byte buffer to the stream. Read more
source§fn writer_ref(&mut self) -> &mut dyn Write
fn writer_ref(&mut self) -> &mut dyn Write
Returns mutable reference to underlying writer
source§fn build<T: ToByteStream>(&mut self, build: &T) -> Result<(), T::Error>
fn build<T: ToByteStream>(&mut self, build: &T) -> Result<(), T::Error>
Builds and writes complex type
source§fn build_with<T: ToByteStreamWith>(
&mut self,
build: &T,
context: &T::Context
) -> Result<(), T::Error>
fn build_with<T: ToByteStreamWith>( &mut self, build: &T, context: &T::Context ) -> Result<(), T::Error>
Builds and writes complex type with context
Auto Trait Implementations§
impl<W, E> Freeze for ByteWriter<W, E>where
W: Freeze,
impl<W, E> RefUnwindSafe for ByteWriter<W, E>where
W: RefUnwindSafe,
E: RefUnwindSafe,
impl<W, E> Send for ByteWriter<W, E>
impl<W, E> Sync for ByteWriter<W, E>
impl<W, E> Unpin for ByteWriter<W, E>
impl<W, E> UnwindSafe for ByteWriter<W, E>where
W: UnwindSafe,
E: UnwindSafe,
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