pub struct VecData<T, I: Index = usize>(/* private fields */);
Expand description
An abstract type which captures the parameters of a Vec
type’s data representation.
Trait Implementations§
Auto Trait Implementations§
impl<T, I> Freeze for VecData<T, I>
impl<T, I> RefUnwindSafe for VecData<T, I>where
T: RefUnwindSafe,
I: RefUnwindSafe,
impl<T, I> Send for VecData<T, I>where
T: Send,
impl<T, I> Sync for VecData<T, I>where
T: Sync,
impl<T, I> Unpin for VecData<T, I>
impl<T, I> UnwindSafe for VecData<T, I>where
T: UnwindSafe,
I: UnwindSafe,
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