postcard::ser_flavors

Type Alias StdVec

Source
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

Source§

impl AllocVec

Source

pub fn new() -> Self

Create a new, currently empty, alloc::vec::Vec to be used for storing serialized output data.

Trait Implementations

Source§

impl Default for AllocVec

Source§

fn default() -> AllocVec

Returns the “default value” for a type. Read more
Source§

impl Flavor for AllocVec

Source§

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<()>

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.
Source§

fn try_push(&mut self, data: u8) -> Result<()>

Push a single byte to be modified and/or stored.
Source§

fn finalize(self) -> Result<Self::Output>

Finalize the serialization process.
Source§

impl Index<usize> for AllocVec

Source§

type Output = u8

The returned type after indexing.
Source§

fn index(&self, idx: usize) -> &u8

Performs the indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for AllocVec

Source§

fn index_mut(&mut self, idx: usize) -> &mut u8

Performs the mutable indexing (container[index]) operation. Read more