Struct SqliteRow
pub struct SqliteRow { /* private fields */ }
Expand description
Implementation of Row
for SQLite.
Trait Implementations§
§impl ColumnIndex<SqliteRow> for &str
impl ColumnIndex<SqliteRow> for &str
§fn index(&self, row: &SqliteRow) -> Result<usize, Error>
fn index(&self, row: &SqliteRow) -> Result<usize, Error>
Returns a valid positional index into the row or statement,
ColumnIndexOutOfBounds
, or,
ColumnNotFound
.§impl ColumnIndex<SqliteRow> for usize
impl ColumnIndex<SqliteRow> for usize
§fn index(&self, row: &SqliteRow) -> Result<usize, Error>
fn index(&self, row: &SqliteRow) -> Result<usize, Error>
Returns a valid positional index into the row or statement,
ColumnIndexOutOfBounds
, or,
ColumnNotFound
.§impl From<SqliteRow> for QueryResult
impl From<SqliteRow> for QueryResult
§fn from(row: SqliteRow) -> QueryResult
fn from(row: SqliteRow) -> QueryResult
Converts to this type from the input type.
§impl Row for SqliteRow
impl Row for SqliteRow
type Database = Sqlite
§fn columns(&self) -> &[SqliteColumn]
fn columns(&self) -> &[SqliteColumn]
Gets all columns in this statement.
§fn try_get_raw<I>(&self, index: I) -> Result<SqliteValueRef<'_>, Error>where
I: ColumnIndex<SqliteRow>,
fn try_get_raw<I>(&self, index: I) -> Result<SqliteValueRef<'_>, Error>where
I: ColumnIndex<SqliteRow>,
Index into the database row and decode a single value. Read more
§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 more§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 a ColumnIndexOutOfBounds
error if out of bounds.§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
§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
§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
§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
impl Send for SqliteRow
impl Sync for SqliteRow
Auto Trait Implementations§
impl Freeze for SqliteRow
impl RefUnwindSafe for SqliteRow
impl Unpin for SqliteRow
impl UnwindSafe for SqliteRow
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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