pub struct ValuesRow(pub Vec<Expr>);Expand description
One parenthesised row of a VALUES list.
Named ValuesRow rather than bob’s Value so that it cannot be confused with
Value, the bound-argument enum.
Tuple Fields§
§0: Vec<Expr>The cells, in column order.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for ValuesRow
impl !UnwindSafe for ValuesRow
impl Freeze for ValuesRow
impl Send for ValuesRow
impl Sync for ValuesRow
impl Unpin for ValuesRow
impl UnsafeUnpin for ValuesRow
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