Struct uninit_tools::buffers::VectorPartsMut[][src]

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

Fields

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

Trait Implementations

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

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

Auto Trait Implementations

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

impl<'a, Item> Send for VectorPartsMut<'a, Item> where
    Item: Send

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

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

impl<'a, Item> !UnwindSafe for VectorPartsMut<'a, Item>

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.