pub struct Missing<C>(/* private fields */);Expand description
A column an *Insert builder hasn’t been given a value for yet. Named
after the column so the builder’s type says which one is missing, rather
than leaving a bare () to be counted by position.
Trait Implementations§
Auto Trait Implementations§
impl<C> Freeze for Missing<C>
impl<C> RefUnwindSafe for Missing<C>
impl<C> Send for Missing<C>
impl<C> Sync for Missing<C>
impl<C> Unpin for Missing<C>
impl<C> UnsafeUnpin for Missing<C>
impl<C> UnwindSafe for Missing<C>
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