Struct scylla::statement::query::Query[][src]

pub struct Query { /* fields omitted */ }
Expand description

CQL query statement.

This represents a CQL query that can be executed on a server.

Implementations

Creates a new Query from a CQL query string.

Returns self with page size set to the given value

Returns the string representation of the CQL query.

Sets the page size for this CQL query.

Disables paging for this CQL query.

Returns the page size for this CQL query.

Sets the consistency to be used when executing this batch.

Gets the consistency to be used when executing this batch.

Sets the serial consistency to be used when executing this batch. (Ignored unless the batch is an LWT)

Gets the serial consistency to be used when executing this batch. (Ignored unless the batch is an LWT)

Sets the idempotence of this statement A query is idempotent if it can be applied multiple times without changing the result of the initial application If set to true we can be sure that it is idempotent If set to false it is unknown whether it is idempotent This is used in RetryPolicy to decide if retrying a query is safe

Gets the idempotence of this statement

Sets a custom RetryPolicy to be used with this statement By default Session’s retry policy is used, this allows to use a custom retry policy

Gets custom RetryPolicy used by this statement

Enable or disable CQL Tracing for this batch If enabled session.batch() will return a BatchResult containing tracing_id which can be used to query tracing information about the execution of this query

Gets whether tracing is enabled for this batch

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Performs the conversion.

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.