Struct cassandra_cpp::CassResult
source · pub struct CassResult(_);
Expand description
The result of a query.
A result object is read-only and is thread-safe to read or iterate over
concurrently, since we do not bind any setters (e.g., set_metadata
).
Implementations§
source§impl CassResult
impl CassResult
sourcepub fn column_count(&self) -> u64
pub fn column_count(&self) -> u64
Gets the number of columns per row for the specified result.
sourcepub fn column_name(&self, index: usize) -> Result<&str>
pub fn column_name(&self, index: usize) -> Result<&str>
Gets the column name at index for the specified result.
sourcepub fn column_type(&self, index: usize) -> ValueType
pub fn column_type(&self, index: usize) -> ValueType
Gets the column type at index for the specified result.
sourcepub fn column_data_type(&self, index: usize) -> ConstDataType
pub fn column_data_type(&self, index: usize) -> ConstDataType
Gets the column datatype at index for the specified result.
sourcepub fn has_more_pages(&self) -> bool
pub fn has_more_pages(&self) -> bool
Returns true if there are more pages.
sourcepub fn set_paging_state_token(&mut self, paging_state: &str) -> Result<&mut Self>
pub fn set_paging_state_token(&mut self, paging_state: &str) -> Result<&mut Self>
Sets the statement’s paging state. This can be used to get the next page of data in a multi-page query.
Warning: The paging state should not be exposed to or come from untrusted environments. The paging state could be spoofed and potentially