Struct cassandra_cpp::Row [] [src]

pub struct Row(_);

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

Methods

impl Row
[src]

[src]

Get a particular column by index

[src]

Get a particular column by name

Trait Implementations

impl Sync for Row
[src]

impl Send for Row
[src]

impl Debug for Row
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for Row
[src]

[src]

Formats the value using the given formatter. Read more

impl AsRustType<bool> for Row
[src]

[src]

convert while reading cassandra columns

[src]

convert while reading cassandra columns by name

impl AsRustType<String> for Row
[src]

[src]

convert while reading cassandra columns

[src]

convert while reading cassandra columns by name

impl AsRustType<f64> for Row
[src]

[src]

convert while reading cassandra columns

[src]

convert while reading cassandra columns by name

impl AsRustType<f32> for Row
[src]

[src]

convert while reading cassandra columns

[src]

convert while reading cassandra columns by name

impl AsRustType<i64> for Row
[src]

[src]

convert while reading cassandra columns

[src]

convert while reading cassandra columns by name

impl AsRustType<i32> for Row
[src]

[src]

convert while reading cassandra columns

[src]

convert while reading cassandra columns by name

impl AsRustType<SetIterator> for Row
[src]

[src]

convert while reading cassandra columns

[src]

convert while reading cassandra columns by name

impl AsRustType<MapIterator> for Row
[src]

[src]

convert while reading cassandra columns

[src]

convert while reading cassandra columns by name

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

[src]

convert while reading cassandra columns

[src]

convert while reading cassandra columns by name

impl IntoIterator for Row
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

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

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