Struct partiql_ast::ast::InsertValue
source · pub struct InsertValue {
pub target: Box<Expr>,
pub value: Box<Expr>,
pub index: Option<Box<Expr>>,
pub on_conflict: Option<OnConflict>,
}
Fields§
§target: Box<Expr>
§value: Box<Expr>
§index: Option<Box<Expr>>
§on_conflict: Option<OnConflict>
Trait Implementations§
source§impl Clone for InsertValue
impl Clone for InsertValue
source§fn clone(&self) -> InsertValue
fn clone(&self) -> InsertValue
Returns a copy of the value. Read more
1.0.0 · 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 InsertValue
impl Debug for InsertValue
source§impl PartialEq<InsertValue> for InsertValue
impl PartialEq<InsertValue> for InsertValue
source§fn eq(&self, other: &InsertValue) -> bool
fn eq(&self, other: &InsertValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Visit for InsertValue
impl Visit for InsertValue
impl StructuralPartialEq for InsertValue
Auto Trait Implementations§
impl RefUnwindSafe for InsertValue
impl Send for InsertValue
impl Sync for InsertValue
impl Unpin for InsertValue
impl UnwindSafe for InsertValue
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