pub struct WorkingCopy<'a, T, const N: usize> {
pub data: &'a mut Vec<T, N>,
/* private fields */
}Fields§
§data: &'a mut Vec<T, N>Trait Implementations§
Auto Trait Implementations§
impl<'a, T, const N: usize> Freeze for WorkingCopy<'a, T, N>
impl<'a, T, const N: usize> RefUnwindSafe for WorkingCopy<'a, T, N>where
T: RefUnwindSafe,
impl<'a, T, const N: usize> Send for WorkingCopy<'a, T, N>where
T: Send,
impl<'a, T, const N: usize> Sync for WorkingCopy<'a, T, N>where
T: Sync,
impl<'a, T, const N: usize> Unpin for WorkingCopy<'a, T, N>
impl<'a, T, const N: usize> !UnwindSafe for WorkingCopy<'a, T, N>
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