Struct uninit_tools::buffers::VectorParts[][src]

pub struct VectorParts<'a, Item> {
    pub filled: &'a [Item],
    pub unfilled_init: &'a [Item],
    pub unfilled_uninit: &'a [MaybeUninit<Item>],
}

Fields

filled: &'a [Item]unfilled_init: &'a [Item]unfilled_uninit: &'a [MaybeUninit<Item>]

Trait Implementations

impl<'a, Item: Clone> Clone for VectorParts<'a, Item>[src]

impl<'a, Item: Copy> Copy for VectorParts<'a, Item>[src]

impl<'a, Item: Debug> Debug for VectorParts<'a, Item>[src]

impl<'a, Item: Default> Default for VectorParts<'a, Item>[src]

Auto Trait Implementations

impl<'a, Item> RefUnwindSafe for VectorParts<'a, Item> where
    Item: RefUnwindSafe

impl<'a, Item> Send for VectorParts<'a, Item> where
    Item: Sync

impl<'a, Item> Sync for VectorParts<'a, Item> where
    Item: Sync

impl<'a, Item> Unpin for VectorParts<'a, Item>

impl<'a, Item> UnwindSafe for VectorParts<'a, Item> where
    Item: RefUnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.