[][src]Struct rkyv::std_impl::ArchivedVec

#[repr(transparent)]pub struct ArchivedVec<T>(_);

An archived Vec.

Uses ArchivedSlice under the hood.

Implementations

impl<T: DerefMut> ArchivedVec<T>[src]

pub fn index_pin<I>(
    self: Pin<&mut Self>,
    index: I
) -> Pin<&mut <T::Target as Index<I>>::Output> where
    T::Target: IndexMut<I>, 
[src]

Gets the element at the given index ot this archived vec as a pinned mutable reference.

Trait Implementations

impl<T: CheckBytes<C>, C> CheckBytes<C> for ArchivedVec<T>[src]

type Error = <T as CheckBytes<C>>::Error

The error that may result from validating the type.

impl<T: Debug> Debug for ArchivedVec<T>[src]

impl<T: Deref> Deref for ArchivedVec<T>[src]

type Target = T::Target

The resulting type after dereferencing.

impl<T: DerefMut> DerefMut for ArchivedVec<T>[src]

impl<T: Eq> Eq for ArchivedVec<T>[src]

impl<T: Hash> Hash for ArchivedVec<T>[src]

impl<T: Ord> Ord for ArchivedVec<T>[src]

impl<T: PartialEq> PartialEq<ArchivedVec<T>> for ArchivedVec<T>[src]

impl<T: Deref<Target = [U]>, U: PartialEq<V>, V> PartialEq<Vec<V, Global>> for ArchivedVec<T>[src]

impl<T: PartialOrd> PartialOrd<ArchivedVec<T>> for ArchivedVec<T>[src]

impl<T> StructuralEq for ArchivedVec<T>[src]

impl<T> StructuralPartialEq for ArchivedVec<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for ArchivedVec<T> where
    T: RefUnwindSafe

impl<T> Send for ArchivedVec<T> where
    T: Send

impl<T> Sync for ArchivedVec<T> where
    T: Sync

impl<T> Unpin for ArchivedVec<T> where
    T: Unpin

impl<T> UnwindSafe for ArchivedVec<T> where
    T: UnwindSafe

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.