[][src]Struct cassandra_cpp::Row

pub struct Row(_);

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

Implementations

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<Inet> for Row[src]

impl AsRustType<MapIterator> for Row[src]

impl AsRustType<SetIterator> for Row[src]

impl AsRustType<String> for Row[src]

impl AsRustType<UserTypeIterator> for Row[src]

impl AsRustType<Uuid> for Row[src]

impl AsRustType<Uuid> for Row[src]

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

impl AsRustType<bool> for Row[src]

impl AsRustType<f32> for Row[src]

impl AsRustType<f64> for Row[src]

impl AsRustType<i16> for Row[src]

impl AsRustType<i32> for Row[src]

impl AsRustType<i64> for Row[src]

impl AsRustType<i8> for Row[src]

impl AsRustType<u32> for Row[src]

impl Debug for Row[src]

impl Display 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]

Auto Trait Implementations

impl RefUnwindSafe for Row

impl Unpin for Row

impl UnwindSafe for Row

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

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

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.

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.