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
Examples found in repository?
examples/flac-metadata-write.rs (line 140)
87fn main() {
88 let mut flac: Vec<u8> = Vec::new();
89
90 let mut writer = BitWriter::endian(&mut flac, BigEndian);
91
92 // stream marker
93 writer.write_bytes(b"fLaC").unwrap();
94
95 // metadata block header
96 writer
97 .build(&BlockHeader {
98 last_block: false,
99 block_type: 0,
100 block_size: 34,
101 })
102 .unwrap();
103
104 // STREAMINFO block
105 writer
106 .build(&Streaminfo {
107 minimum_block_size: 4096,
108 maximum_block_size: 4096,
109 minimum_frame_size: 1542,
110 maximum_frame_size: 8546,
111 sample_rate: 44100,
112 channels: NonZero::new(2).unwrap(),
113 bits_per_sample: NonZero::new(16).unwrap(),
114 total_samples: 304844,
115 md5: *b"\xFA\xF2\x69\x2F\xFD\xEC\x2D\x5B\x30\x01\x76\xB4\x62\x88\x7D\x92",
116 })
117 .unwrap();
118
119 let comment = VorbisComment {
120 vendor: "reference libFLAC 1.1.4 20070213".to_string(),
121 comment: vec![
122 "title=2ch 44100 16bit".to_string(),
123 "album=Test Album".to_string(),
124 "artist=Assorted".to_string(),
125 "tracknumber=1".to_string(),
126 ],
127 };
128
129 // metadata block header
130 writer
131 .build(&BlockHeader {
132 last_block: false,
133 block_type: 4,
134 block_size: comment.len().try_into().unwrap(),
135 })
136 .unwrap();
137
138 // VORBIS_COMMENT block (little endian)
139 comment
140 .write(&mut ByteWriter::new(writer.writer().unwrap()))
141 .unwrap();
142
143 assert_eq!(flac, include_bytes!("data/metadata-only.flac"));
144}
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<V>(&mut self, value: V) -> Result<()>where
V: Primitive,
fn write<V>(&mut self, value: V) -> Result<()>where
V: Primitive,
Writes whole numeric value to stream Read more
Source§fn write_as<F, V>(&mut self, value: V) -> Result<()>where
F: Endianness,
V: Primitive,
fn write_as<F, V>(&mut self, value: V) -> Result<()>where
F: Endianness,
V: Primitive,
Writes whole numeric value to stream in a potentially different endianness Read more
Source§fn pad(&mut self, bytes: u32) -> Result<()>
fn pad(&mut self, bytes: u32) -> Result<()>
Pads the stream by writing 0 over the given number of bytes. 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<'a, T: ToByteStreamWith<'a>>(
&mut self,
build: &T,
context: &T::Context,
) -> Result<(), T::Error>
fn build_with<'a, T: ToByteStreamWith<'a>>( &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