Struct cassandra_cpp::CassResult [] [src]

pub struct CassResult(_);

The result of a query. A result object is read-only and is thread-safe to read or iterate over concurrently.

Methods

impl CassResult
[src]

Gets the number of rows for the specified result.

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.

Gets the first row of the result.

Returns true if there are more pages.

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

Creates a new iterator for the specified result. This can be used to iterate over rows in the result.

Trait Implementations

impl Sync for CassResult
[src]

impl Send for CassResult
[src]

impl Debug for CassResult
[src]

Formats the value using the given formatter.

impl Display for CassResult
[src]

Formats the value using the given formatter. Read more

impl IntoIterator for CassResult
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more