scylladb/cql/frame/
queryflags.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This module defines the query flags.

/// The query flag indicates that value is provided.
pub const VALUES: u8 = 0x01;
/// The query flag indicates that there is no metadata
pub const SKIP_METADATA: u8 = 0x02;
/// The query flag indicates whether to set a page size.
pub const PAGE_SIZE: u8 = 0x04;
/// The query flag indicates the paging state is present or not.
pub const PAGING_STATE: u8 = 0x08;
/// The query flag indicates whether the serial consistency is present or not.
pub const SERIAL_CONSISTENCY: u8 = 0x10;
/// The query flag indicates whether to use the default timestamp or not.
pub const TIMESTAMP: u8 = 0x20;