[][src]Struct flatvec::Storage

pub struct Storage<'a>(_);

A wrapper over the innards of a FlatVec which exposes mutating operations which cannot corrupt other elements during a push

Implementations

impl<'_> Storage<'_>[src]

pub fn reserve(&mut self, len: usize)[src]

Reserves capacity for at least len additional bytes

pub fn extend<Iter, T>(&mut self, iter: Iter) where
    Iter: IntoIterator<Item = T>,
    T: Borrow<u8>, 
[src]

Inserts the bytes described by iter

Auto Trait Implementations

impl<'a> RefUnwindSafe for Storage<'a>

impl<'a> Send for Storage<'a>

impl<'a> Sync for Storage<'a>

impl<'a> Unpin for Storage<'a>

impl<'a> !UnwindSafe for Storage<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.