pub struct UpdateWhereExprRequest {
pub caller: CallerContext,
pub project_id: String,
pub scope_id: String,
pub table_name: String,
pub predicate: Expr,
pub updates: Vec<(String, TableUpdateExpr)>,
pub limit: Option<usize>,
}Fields§
§caller: CallerContext§project_id: String§scope_id: String§table_name: String§predicate: Expr§updates: Vec<(String, TableUpdateExpr)>§limit: Option<usize>Trait Implementations§
Source§impl Clone for UpdateWhereExprRequest
impl Clone for UpdateWhereExprRequest
Source§fn clone(&self) -> UpdateWhereExprRequest
fn clone(&self) -> UpdateWhereExprRequest
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 UpdateWhereExprRequest
impl RefUnwindSafe for UpdateWhereExprRequest
impl Send for UpdateWhereExprRequest
impl Sync for UpdateWhereExprRequest
impl Unpin for UpdateWhereExprRequest
impl UnsafeUnpin for UpdateWhereExprRequest
impl UnwindSafe for UpdateWhereExprRequest
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