pub type StdVec = AllocVec;
Expand description
The StdVec
flavor is a wrapper type around a std::vec::Vec
.
This type is only available when the (non-default) use-std
feature is active
Aliased Type§
struct StdVec { /* private fields */ }
Implementations
Trait Implementations
Source§impl Flavor for AllocVec
impl Flavor for AllocVec
Source§type Output = Vec<u8>
type Output = Vec<u8>
The
Output
type is what this storage “resolves” to when the serialization is complete,
such as a slice or a Vec of some sort.Source§fn try_extend(&mut self, data: &[u8]) -> Result<()>
fn try_extend(&mut self, data: &[u8]) -> Result<()>
Override this method when you want to customize processing
multiple bytes at once, such as copying a slice to the output,
rather than iterating over one byte at a time.