pub struct ValuesStmt {
pub rows: Vec<Vec<Expr>>,
}Expand description
SP39: a VALUES row constructor list. Every row is non-empty; cross-row arity
is checked during executor analysis so it gets PostgreSQL’s analysis SQLSTATE.
Fields§
§rows: Vec<Vec<Expr>>Trait Implementations§
Source§impl Clone for ValuesStmt
impl Clone for ValuesStmt
Source§fn clone(&self) -> ValuesStmt
fn clone(&self) -> ValuesStmt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ValuesStmt
impl Debug for ValuesStmt
Source§impl PartialEq for ValuesStmt
impl PartialEq for ValuesStmt
impl StructuralPartialEq for ValuesStmt
Auto Trait Implementations§
impl Freeze for ValuesStmt
impl RefUnwindSafe for ValuesStmt
impl Send for ValuesStmt
impl Sync for ValuesStmt
impl Unpin for ValuesStmt
impl UnsafeUnpin for ValuesStmt
impl UnwindSafe for ValuesStmt
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