pub struct BodyReqBatch {
pub batch_type: BatchType,
pub queries: Vec<BatchQuery>,
pub consistency: Consistency,
pub query_flags: Vec<QueryFlags>,
pub serial_consistency: Option<Consistency>,
pub timestamp: Option<i64>,
}Expand description
BodyResReady
Fields§
§batch_type: BatchType§queries: Vec<BatchQuery>§consistency: Consistency§query_flags: Vec<QueryFlags>IMPORTANT NOTE: with names flag does not work and should not be used. https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec#L413
serial_consistency: Option<Consistency>§timestamp: Option<i64>Trait Implementations§
Source§impl Clone for BodyReqBatch
impl Clone for BodyReqBatch
Source§fn clone(&self) -> BodyReqBatch
fn clone(&self) -> BodyReqBatch
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 moreSource§impl Debug for BodyReqBatch
impl Debug for BodyReqBatch
Source§impl IntoBytes for BodyReqBatch
impl IntoBytes for BodyReqBatch
Auto Trait Implementations§
impl Freeze for BodyReqBatch
impl RefUnwindSafe for BodyReqBatch
impl Send for BodyReqBatch
impl Sync for BodyReqBatch
impl Unpin for BodyReqBatch
impl UnwindSafe for BodyReqBatch
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