Struct cassandra_protocol::frame::frame_batch::BatchQuery [−][src]
pub struct BatchQuery {
pub is_prepared: bool,
pub subject: BatchQuerySubj,
pub values: QueryValues,
}
Expand description
The structure that represents a query to be batched.
Fields
is_prepared: bool
Indicates if a query was prepared.
subject: BatchQuerySubj
Contains either id of prepared query or a query itself.
values: QueryValues
It is the optional name of the following <value_i>. It must be present if and only if the 0x40 flag is provided for the batch. Important note: this feature does not work and should not be used. It is specified in a way that makes it impossible for the server to implement. This will be fixed in a future version of the native protocol. See https://issues.apache.org/jira/browse/CASSANDRA-10246 for more details
Implementations
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for BatchQuery
impl Send for BatchQuery
impl Sync for BatchQuery
impl Unpin for BatchQuery
impl UnwindSafe for BatchQuery
Blanket Implementations
Mutably borrows from an owned value. Read more