pub struct HVec<const B: usize> { /* private fields */ }Available on crate feature
heapless only.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>
Source§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<()>
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.
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
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.