pub struct UpdatePayloadStmt {
pub collection: String,
pub selector: PointSelector,
pub payload: Vec<(String, Value)>,
pub shard_key: Option<String>,
}Fields§
§collection: String§selector: PointSelector§payload: Vec<(String, Value)>§shard_key: Option<String>Trait Implementations§
Source§impl Clone for UpdatePayloadStmt
impl Clone for UpdatePayloadStmt
Source§fn clone(&self) -> UpdatePayloadStmt
fn clone(&self) -> UpdatePayloadStmt
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 UpdatePayloadStmt
impl Debug for UpdatePayloadStmt
Source§impl PartialEq for UpdatePayloadStmt
impl PartialEq for UpdatePayloadStmt
impl StructuralPartialEq for UpdatePayloadStmt
Auto Trait Implementations§
impl Freeze for UpdatePayloadStmt
impl RefUnwindSafe for UpdatePayloadStmt
impl Send for UpdatePayloadStmt
impl Sync for UpdatePayloadStmt
impl Unpin for UpdatePayloadStmt
impl UnsafeUnpin for UpdatePayloadStmt
impl UnwindSafe for UpdatePayloadStmt
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