[][src]Struct cassandra_cpp::Row

pub struct Row(_);

A collection of column values. Read-only, so thread-safe.

Methods

impl Row
[src]

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

Get a particular column by index

pub fn get_column_by_name<S>(&self, name: S) -> Result<Value> where
    S: Into<String>, 
[src]

Get a particular column by name

Trait Implementations

impl AsRustType<bool> for Row
[src]

impl AsRustType<String> for Row
[src]

impl AsRustType<f64> for Row
[src]

impl AsRustType<f32> for Row
[src]

impl AsRustType<i64> for Row
[src]

impl AsRustType<i32> for Row
[src]

impl AsRustType<i16> for Row
[src]

impl AsRustType<i8> for Row
[src]

impl AsRustType<u32> for Row
[src]

impl AsRustType<Inet> for Row
[src]

impl AsRustType<SetIterator> for Row
[src]

impl AsRustType<MapIterator> for Row
[src]

impl AsRustType<UserTypeIterator> for Row
[src]

impl AsRustType<Uuid> for Row
[src]

impl AsRustType<Vec<u8>> for Row
[src]

impl IntoIterator for Row
[src]

type Item = Value

The type of the elements being iterated over.

type IntoIter = RowIterator

Which kind of iterator are we turning this into?

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

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

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

type Item = Value

The type of the elements being iterated over.

type IntoIter = RowIterator

Which kind of iterator are we turning this into?

impl Send for Row
[src]

impl Sync for Row
[src]

impl Debug for Row
[src]

impl Display for Row
[src]

Blanket Implementations

impl<T> From for T
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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