Struct cassandra_cpp::CassResult[][src]

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

impl CassResult[src]

pub fn row_count(&self) -> u64[src]

Gets the number of rows for the specified result.

pub fn column_count(&self) -> u64[src]

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

pub fn column_name(&self, index: usize) -> Result<&str>[src]

Gets the column name at index for the specified result.

pub fn column_type(&self, index: usize) -> ValueType[src]

Gets the column type at index for the specified result.

pub fn column_data_type(&self, index: usize) -> ConstDataType[src]

Gets the column datatype at index for the specified result.

pub fn first_row(&self) -> Option<Row<'_>>[src]

Gets the first row of the result.

pub fn has_more_pages(&self) -> bool[src]

Returns true if there are more pages.

pub fn paging_state_token(&self) -> Result<Option<Vec<u8>>>[src]

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.

pub fn iter(&self) -> ResultIterator<'_>[src]

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

Trait Implementations

impl Debug for CassResult[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for CassResult[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Drop for CassResult[src]

fn drop(&mut self)[src]

Executes the destructor for this type. Read more

impl<'a> IntoIterator for &'a CassResult[src]

type Item = Row<'a>

The type of the elements being iterated over.

type IntoIter = ResultIterator<'a>

Which kind of iterator are we turning this into?

fn into_iter(self) -> Self::IntoIter[src]

Creates an iterator from a value. Read more

impl Send for CassResult[src]

impl Sync for CassResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]