Struct zstd_safe::OutBuffer [−][src]
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
Returns a new OutBuffer
around the given slice.
Starts with pos = 0
.
Returns a new OutBuffer
around the given slice, starting at the given position.
Panics
If pos >= dst.capacity()
.