cassandra-proto 0.1.2

Cassandra binary protocol primitives
Documentation
1
2
3
4
5
6
7
8
9
use super::QueryParams;

/// Structure that represents CQL query and parameters which will be applied during
/// its execution
#[derive(Debug, Default)]
pub struct Query {
  pub query: String,
  pub params: QueryParams,
}