pub struct Row<'a>(/* private fields */);
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>
fn get_by_name<S>(&self, name: S) -> Result<MapIterator>
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>
fn get_by_name<S>(&self, name: S) -> Result<SetIterator>
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>
fn get_by_name<S>(&self, name: S) -> Result<UserTypeIterator>
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§
impl<'a> Freeze for Row<'a>
impl<'a> RefUnwindSafe for Row<'a>
impl<'a> Unpin for Row<'a>
impl<'a> UnwindSafe for Row<'a>
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