Struct cassandra_cpp::Row
source · pub struct Row<'a>(_, _);
Expand description
A collection of column values. Read-only, so thread-safe.
Implementations§
Trait Implementations§
source§impl AsRustType<Inet> for Row<'_>
impl AsRustType<Inet> for Row<'_>
source§impl AsRustType<MapIterator> for Row<'_>
impl AsRustType<MapIterator> for Row<'_>
source§fn get_by_name<S>(&self, name: S) -> Result<MapIterator>where
S: Into<String>,
fn get_by_name<S>(&self, name: S) -> Result<MapIterator>where S: Into<String>,
convert while reading cassandra columns by name
source§impl AsRustType<SetIterator> for Row<'_>
impl AsRustType<SetIterator> for Row<'_>
source§fn get_by_name<S>(&self, name: S) -> Result<SetIterator>where
S: Into<String>,
fn get_by_name<S>(&self, name: S) -> Result<SetIterator>where S: Into<String>,
convert while reading cassandra columns by name
source§impl AsRustType<String> for Row<'_>
impl AsRustType<String> for Row<'_>
source§impl AsRustType<UserTypeIterator> for Row<'_>
impl AsRustType<UserTypeIterator> for Row<'_>
source§fn get(&self, index: usize) -> Result<UserTypeIterator>
fn get(&self, index: usize) -> Result<UserTypeIterator>
convert while reading cassandra columns
source§fn get_by_name<S>(&self, name: S) -> Result<UserTypeIterator>where
S: Into<String>,
fn get_by_name<S>(&self, name: S) -> Result<UserTypeIterator>where S: Into<String>,
convert while reading cassandra columns by name
source§impl AsRustType<Uuid> for Row<'_>
impl AsRustType<Uuid> for Row<'_>
source§impl AsRustType<Uuid> for Row<'_>
impl AsRustType<Uuid> for Row<'_>
source§impl AsRustType<bool> for Row<'_>
impl AsRustType<bool> for Row<'_>
source§impl AsRustType<f32> for Row<'_>
impl AsRustType<f32> for Row<'_>
source§impl AsRustType<f64> for Row<'_>
impl AsRustType<f64> for Row<'_>
source§impl AsRustType<i16> for Row<'_>
impl AsRustType<i16> for Row<'_>
source§impl AsRustType<i32> for Row<'_>
impl AsRustType<i32> for Row<'_>
source§impl AsRustType<i64> for Row<'_>
impl AsRustType<i64> for Row<'_>
source§impl AsRustType<i8> for Row<'_>
impl AsRustType<i8> for Row<'_>
source§impl AsRustType<u32> for Row<'_>
impl AsRustType<u32> for Row<'_>
source§impl<'a> IntoIterator for &'a Row<'_>
impl<'a> IntoIterator for &'a Row<'_>
source§impl IntoIterator for Row<'_>
impl IntoIterator for Row<'_>
impl<'a> Send for Row<'a>
impl<'a> Sync for Row<'a>
Auto Trait Implementations§
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more