pub type VarCharBox = VarChar<Box<[u8]>>;
Expand description
Parameter type for owned, variable sized narrow character data.
We use Box<[u8]>
rather than Vec<u8>
as a buffer type since the indicator pointer already
has the role of telling us how many bytes in the buffer are part of the payload.
Aliased Typeยง
struct VarCharBox { /* private fields */ }