Expand description
Wrapper around an output buffer.
C
is usually either [u8]
or Vec<u8>
.
Bytes will be written starting at dst[pos]
.
pos
will be updated after writing.
Invariant
pos <= dst.capacity()
Fields§
§dst: &'a mut C
Implementations§
source§impl<'a, C: WriteBuf + ?Sized> OutBuffer<'a, C>
impl<'a, C: WriteBuf + ?Sized> OutBuffer<'a, C>
sourcepub fn around(dst: &'a mut C) -> Self
pub fn around(dst: &'a mut C) -> Self
Returns a new OutBuffer
around the given slice.
Starts with pos = 0
.
sourcepub fn around_pos(dst: &'a mut C, pos: usize) -> Self
pub fn around_pos(dst: &'a mut C, pos: usize) -> Self
Returns a new OutBuffer
around the given slice, starting at the given position.
Panics
If pos >= dst.capacity()
.