[−][src]Struct discord_cassandra_cpp::Row
A collection of column values. Read-only, so thread-safe.
Implementations
impl<'a> Row<'a>[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]
S: Into<String>,
Get a particular column by name
Trait Implementations
impl<'_> AsRustType<Inet> for Row<'_>[src]
fn get(&self, index: usize) -> Result<Inet>[src]
fn get_by_name<S>(&self, name: S) -> Result<Inet> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<MapIterator> for Row<'_>[src]
fn get(&self, index: usize) -> Result<MapIterator>[src]
fn get_by_name<S>(&self, name: S) -> Result<MapIterator> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<SetIterator> for Row<'_>[src]
fn get(&self, index: usize) -> Result<SetIterator>[src]
fn get_by_name<S>(&self, name: S) -> Result<SetIterator> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<String> for Row<'_>[src]
fn get(&self, index: usize) -> Result<String>[src]
fn get_by_name<S>(&self, name: S) -> Result<String> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<UserTypeIterator> for Row<'_>[src]
fn get(&self, index: usize) -> Result<UserTypeIterator>[src]
fn get_by_name<S>(&self, name: S) -> Result<UserTypeIterator> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<Uuid> for Row<'_>[src]
fn get(&self, index: usize) -> Result<Uuid>[src]
fn get_by_name<S>(&self, name: S) -> Result<Uuid> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<Uuid> for Row<'_>[src]
fn get(&self, index: usize) -> Result<Uuid>[src]
fn get_by_name<S>(&self, name: S) -> Result<Uuid> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<Vec<u8>> for Row<'_>[src]
fn get(&self, index: usize) -> Result<Vec<u8>>[src]
fn get_by_name<S>(&self, name: S) -> Result<Vec<u8>> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<bool> for Row<'_>[src]
fn get(&self, index: usize) -> Result<bool>[src]
fn get_by_name<S>(&self, name: S) -> Result<bool> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<f32> for Row<'_>[src]
fn get(&self, index: usize) -> Result<f32>[src]
fn get_by_name<S>(&self, name: S) -> Result<f32> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<f64> for Row<'_>[src]
fn get(&self, index: usize) -> Result<f64>[src]
fn get_by_name<S>(&self, name: S) -> Result<f64> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<i16> for Row<'_>[src]
fn get(&self, index: usize) -> Result<i16>[src]
fn get_by_name<S>(&self, name: S) -> Result<i16> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<i32> for Row<'_>[src]
fn get(&self, index: usize) -> Result<i32>[src]
fn get_by_name<S>(&self, name: S) -> Result<i32> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<i64> for Row<'_>[src]
fn get(&self, index: usize) -> Result<i64>[src]
fn get_by_name<S>(&self, name: S) -> Result<i64> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<i8> for Row<'_>[src]
fn get(&self, index: usize) -> Result<i8>[src]
fn get_by_name<S>(&self, name: S) -> Result<i8> where
S: Into<String>, [src]
S: Into<String>,
impl<'_> AsRustType<u32> for Row<'_>[src]
fn get(&self, index: usize) -> Result<u32>[src]
fn get_by_name<S>(&self, name: S) -> Result<u32> where
S: Into<String>, [src]
S: Into<String>,
impl<'a> Debug for Row<'a>[src]
impl<'a> Display for Row<'a>[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?
fn into_iter(self) -> Self::IntoIter[src]
impl<'a> Send for Row<'a>[src]
impl<'a> Sync for Row<'a>[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator, [src]
I: Iterator,
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?
pub fn into_iter(self) -> I[src]
impl<T> SendSyncUnwindSafe for T where
T: Send + Sync + UnwindSafe + ?Sized, [src]
T: Send + Sync + UnwindSafe + ?Sized,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,