pub enum VecBuffers {}Available on crate feature
std only.Expand description
A Buffers implementation which uses std::vec::Vec for storing items.
In terms of memory usage, this has the potential to use a lot less overall
than something like SmallFixedBuffers because we’ve traded deterministic
memory usage for only allocating memory when it is required.
Trait Implementations§
Source§impl<'input> Buffers<'input> for VecBuffers
impl<'input> Buffers<'input> for VecBuffers
Source§impl Clone for VecBuffers
impl Clone for VecBuffers
Source§fn clone(&self) -> VecBuffers
fn clone(&self) -> VecBuffers
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VecBuffers
impl Debug for VecBuffers
Source§impl PartialEq for VecBuffers
impl PartialEq for VecBuffers
impl Copy for VecBuffers
impl StructuralPartialEq for VecBuffers
Auto Trait Implementations§
impl Freeze for VecBuffers
impl RefUnwindSafe for VecBuffers
impl Send for VecBuffers
impl Sync for VecBuffers
impl Unpin for VecBuffers
impl UnwindSafe for VecBuffers
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