Struct postcard::ser_flavors::HVec
source · pub struct HVec<const B: usize> { /* private fields */ }
Expand description
The HVec
flavor is a wrapper type around a heapless::Vec
. This is a stack
allocated data structure, with a fixed maximum size and variable amount of contents.
Implementations§
Trait Implementations§
source§impl<const B: usize> Flavor for HVec<B>
impl<const B: usize> Flavor for HVec<B>
§type Output = Vec<u8, B>
type Output = Vec<u8, B>
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<()>
The try_extend() trait method can be implemented when there is a more efficient way of processing
multiple bytes at once, such as copying a slice to the output, rather than iterating over one byte
at a time.
Auto Trait Implementations§
impl<const B: usize> Freeze for HVec<B>
impl<const B: usize> RefUnwindSafe for HVec<B>
impl<const B: usize> Send for HVec<B>
impl<const B: usize> Sync for HVec<B>
impl<const B: usize> Unpin for HVec<B>
impl<const B: usize> UnwindSafe for HVec<B>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more