Struct cdrs::frame::frame_batch::BatchQuery [] [src]

pub struct BatchQuery {
    pub is_prepared: bool,
    pub subject: BatchQuerySubj,
    pub values: Vec<(Option<CString>, Value)>,
}

The structure that represents a query to be batched.

Fields

It indicates if a query was prepared.

It contains either id of prepared query of a query itself.

It is the optional name of the following . 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

Trait Implementations

impl Debug for BatchQuery
[src]

Formats the value using the given formatter.

impl Clone for BatchQuery
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl IntoBytes for BatchQuery
[src]

It should convert a struct into an array of bytes.