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, since we do not bind any setters (e.g., set_metadata).

Methods

impl CassResult
[src]

[src]

Gets the number of rows for the specified result.

[src]

Gets the number of columns per row for the specified result.

[src]

Gets the column name at index for the specified result.

[src]

Gets the column type at index for the specified result.

[src]

Gets the column datatype at index for the specified result.

[src]

Gets the first row of the result.

[src]

Returns true if there are more pages.

[src]

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

[src]

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]

[src]

Formats the value using the given formatter.

impl Display for CassResult
[src]

[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?

[src]

Creates an iterator from a value. Read more