pub struct MySqlRow { /* private fields */ }
Expand description
Implementation of Row
for MySQL.
Trait Implementations§
Source§impl ColumnIndex<MySqlRow> for &str
impl ColumnIndex<MySqlRow> for &str
Source§fn index(&self, row: &MySqlRow) -> Result<usize, Error>
fn index(&self, row: &MySqlRow) -> Result<usize, Error>
Returns a valid positional index into the row or statement,
ColumnIndexOutOfBounds
, or,
ColumnNotFound
.Source§impl ColumnIndex<MySqlRow> for usize
impl ColumnIndex<MySqlRow> for usize
Source§fn index(&self, row: &MySqlRow) -> Result<usize, Error>
fn index(&self, row: &MySqlRow) -> Result<usize, Error>
Returns a valid positional index into the row or statement,
ColumnIndexOutOfBounds
, or,
ColumnNotFound
.Source§impl Row for MySqlRow
impl Row for MySqlRow
type Database = MySql
Source§fn columns(&self) -> &[MySqlColumn]
fn columns(&self) -> &[MySqlColumn]
Gets all columns in this statement.
Source§fn try_get_raw<I>(&self, index: I) -> Result<MySqlValueRef<'_>, Error>where
I: ColumnIndex<Self>,
fn try_get_raw<I>(&self, index: I) -> Result<MySqlValueRef<'_>, Error>where
I: ColumnIndex<Self>,
Index into the database row and decode a single value. Read more
Source§fn column<I>(&self, index: I) -> &<Self::Database as Database>::Columnwhere
I: ColumnIndex<Self>,
fn column<I>(&self, index: I) -> &<Self::Database as Database>::Columnwhere
I: ColumnIndex<Self>,
Gets the column information at
index
. Read moreSource§fn try_column<I>(
&self,
index: I,
) -> Result<&<Self::Database as Database>::Column, Error>where
I: ColumnIndex<Self>,
fn try_column<I>(
&self,
index: I,
) -> Result<&<Self::Database as Database>::Column, Error>where
I: ColumnIndex<Self>,
Gets the column information at
index
or None
if out of bounds.Source§fn get<'r, T, I>(&'r self, index: I) -> T
fn get<'r, T, I>(&'r self, index: I) -> T
Index into the database row and decode a single value. Read more
Source§fn get_unchecked<'r, T, I>(&'r self, index: I) -> T
fn get_unchecked<'r, T, I>(&'r self, index: I) -> T
Index into the database row and decode a single value. Read more
Source§fn try_get<'r, T, I>(&'r self, index: I) -> Result<T, Error>
fn try_get<'r, T, I>(&'r self, index: I) -> Result<T, Error>
Index into the database row and decode a single value. Read more
Source§fn try_get_unchecked<'r, T, I>(&'r self, index: I) -> Result<T, Error>
fn try_get_unchecked<'r, T, I>(&'r self, index: I) -> Result<T, Error>
Index into the database row and decode a single value. Read more
fn decode<'a, R>( &self, v: <Self::Database as HasValueRef<'a>>::ValueRef, ) -> Result<R, Box<dyn Error + Send + Sync>>
Auto Trait Implementations§
impl !Freeze for MySqlRow
impl RefUnwindSafe for MySqlRow
impl Send for MySqlRow
impl Sync for MySqlRow
impl Unpin for MySqlRow
impl UnwindSafe for MySqlRow
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more