#[repr(C)]pub struct UpdateStmt {
pub type_: NodeTag,
pub relation: *mut RangeVar,
pub targetList: *mut List,
pub whereClause: *mut Node,
pub fromClause: *mut List,
pub returningList: *mut List,
pub withClause: *mut WithClause,
}
Fields§
§type_: NodeTag
§relation: *mut RangeVar
§targetList: *mut List
§whereClause: *mut Node
§fromClause: *mut List
§returningList: *mut List
§withClause: *mut WithClause
Trait Implementations§
Source§impl Clone for UpdateStmt
impl Clone for UpdateStmt
Source§fn clone(&self) -> UpdateStmt
fn clone(&self) -> UpdateStmt
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 UpdateStmt
impl Debug for UpdateStmt
Source§impl Default for UpdateStmt
impl Default for UpdateStmt
Source§impl Display for UpdateStmt
impl Display for UpdateStmt
Source§impl PgNode for UpdateStmt
impl PgNode for UpdateStmt
Source§fn display_node(&self) -> String
fn display_node(&self) -> String
Format this node Read more
impl Copy for UpdateStmt
Auto Trait Implementations§
impl Freeze for UpdateStmt
impl RefUnwindSafe for UpdateStmt
impl !Send for UpdateStmt
impl !Sync for UpdateStmt
impl Unpin for UpdateStmt
impl UnwindSafe for UpdateStmt
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