pub struct ClearPayloadStmt {
pub collection: String,
pub selector: PointSelector,
pub shard_key: Option<ShardKey>,
pub wait: Option<bool>,
}Expand description
CLEAR PAYLOAD FROM <collection> WHERE … statement.
Fields§
§collection: StringTarget collection.
selector: PointSelectorPoints whose payload is cleared.
shard_key: Option<ShardKey>SHARD '<key>' routing key.
wait: Option<bool>Optional write durability confirmation (WAIT true / WAIT false).
Trait Implementations§
Source§impl Clone for ClearPayloadStmt
impl Clone for ClearPayloadStmt
Source§fn clone(&self) -> ClearPayloadStmt
fn clone(&self) -> ClearPayloadStmt
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 ClearPayloadStmt
impl Debug for ClearPayloadStmt
Source§impl PartialEq for ClearPayloadStmt
impl PartialEq for ClearPayloadStmt
impl StructuralPartialEq for ClearPayloadStmt
Auto Trait Implementations§
impl Freeze for ClearPayloadStmt
impl RefUnwindSafe for ClearPayloadStmt
impl Send for ClearPayloadStmt
impl Sync for ClearPayloadStmt
impl Unpin for ClearPayloadStmt
impl UnsafeUnpin for ClearPayloadStmt
impl UnwindSafe for ClearPayloadStmt
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