pub struct ColUninit<'a, T>(pub ColMut<'a, T>);
Expand description
Simple wrapper indicating that values contained in this column may be uninitialized, and thus references to them shouldn’t be created.
Tuple Fields
0: ColMut<'a, T>
Implementations
Trait Implementations
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for ColUninit<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for ColUninit<'a, T>where
T: Send,
impl<'a, T> Sync for ColUninit<'a, T>where
T: Sync,
impl<'a, T> Unpin for ColUninit<'a, T>
impl<'a, T> !UnwindSafe for ColUninit<'a, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more