pub struct ParsedUpdate {
pub table: String,
pub assignments: Vec<(String, Value)>,
pub predicates: Vec<Predicate>,
pub returning: Option<Vec<String>>,
}Expand description
Parsed UPDATE statement.
Fields§
§table: String§assignments: Vec<(String, Value)>§predicates: Vec<Predicate>§returning: Option<Vec<String>>Trait Implementations§
Source§impl Clone for ParsedUpdate
impl Clone for ParsedUpdate
Source§fn clone(&self) -> ParsedUpdate
fn clone(&self) -> ParsedUpdate
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ParsedUpdate
impl RefUnwindSafe for ParsedUpdate
impl Send for ParsedUpdate
impl Sync for ParsedUpdate
impl Unpin for ParsedUpdate
impl UnwindSafe for ParsedUpdate
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