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
Gets the number of columns per row for the specified result.
Gets the column name at index for the specified result.
Gets the column type at index for the specified result.
Gets the column datatype at index for the specified result.
Returns true if there are more pages.
Gets the statement’s paging state. This can be used to get the next page of
data in a multi-page query, by using set_paging_state_token
.
Returns:
Ok(None)
if there are no more pages, and thus no paging state token.- `Ok(Some(Vec
)) if there are more pages, and a paging state token. Err(_)
if there was an error getting the paging state token.