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§
Source§impl<'a, Item: Debug> Debug for VectorPartsMut<'a, Item>
impl<'a, Item: Debug> Debug for VectorPartsMut<'a, Item>
Source§impl<'a, Item: Default> Default for VectorPartsMut<'a, Item>
impl<'a, Item: Default> Default for VectorPartsMut<'a, Item>
Source§fn default() -> VectorPartsMut<'a, Item>
fn default() -> VectorPartsMut<'a, Item>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a, Item> Freeze for VectorPartsMut<'a, Item>
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§
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