Struct sqlx::any::AnyRow

source ยท
pub struct AnyRow { /* private fields */ }

Trait Implementationsยง

sourceยง

impl Clone for AnyRow

sourceยง

fn clone(&self) -> AnyRow

Returns a copy of the value. Read more
1.0.0 ยท sourceยง

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
sourceยง

impl<'i> ColumnIndex<AnyRow> for &'i str

sourceยง

fn index(&self, row: &AnyRow) -> Result<usize, Error>

Returns a valid positional index into the row or statement, ColumnIndexOutOfBounds, or, ColumnNotFound.
sourceยง

impl ColumnIndex<AnyRow> for usize

sourceยง

fn index(&self, row: &AnyRow) -> Result<usize, Error>

Returns a valid positional index into the row or statement, ColumnIndexOutOfBounds, or, ColumnNotFound.
sourceยง

impl Row for AnyRow

sourceยง

type Database = Any

sourceยง

fn columns(&self) -> &[AnyColumn]

Gets all columns in this statement.
sourceยง

fn try_get_raw<I>( &self, index: I, ) -> Result<<<AnyRow as Row>::Database as Database>::ValueRef<'_>, Error>
where I: ColumnIndex<AnyRow>,

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>
where I: ColumnIndex<AnyRow>, T: Decode<'r, <AnyRow as Row>::Database> + Type<<AnyRow as Row>::Database>,

Index into the database row and decode a single value. Read more
sourceยง

fn is_empty(&self) -> bool

Returns true if this row has no columns.
sourceยง

fn len(&self) -> usize

Returns the number of columns in this row.
sourceยง

fn column<I>(&self, index: I) -> &<Self::Database as Database>::Column
where I: ColumnIndex<Self>,

Gets the column information at index. Read more
sourceยง

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.
sourceยง

fn get<'r, T, I>(&'r self, index: I) -> T
where I: ColumnIndex<Self>, T: Decode<'r, Self::Database> + Type<Self::Database>,

Index into the database row and decode a single value. Read more
sourceยง

fn get_unchecked<'r, T, I>(&'r self, index: I) -> T
where I: ColumnIndex<Self>, T: Decode<'r, Self::Database>,

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>
where I: ColumnIndex<Self>, T: Decode<'r, Self::Database>,

Index into the database row and decode a single value. Read more
sourceยง

impl<'a> TryFrom<&'a MySqlRow> for AnyRow

sourceยง

type Error = Error

The type returned in the event of a conversion error.
sourceยง

fn try_from( row: &'a MySqlRow, ) -> Result<AnyRow, <AnyRow as TryFrom<&'a MySqlRow>>::Error>

Performs the conversion.
sourceยง

impl<'a> TryFrom<&'a PgRow> for AnyRow

sourceยง

type Error = Error

The type returned in the event of a conversion error.
sourceยง

fn try_from( row: &'a PgRow, ) -> Result<AnyRow, <AnyRow as TryFrom<&'a PgRow>>::Error>

Performs the conversion.
sourceยง

impl<'a> TryFrom<&'a SqliteRow> for AnyRow

sourceยง

type Error = Error

The type returned in the event of a conversion error.
sourceยง

fn try_from( row: &'a SqliteRow, ) -> Result<AnyRow, <AnyRow as TryFrom<&'a SqliteRow>>::Error>

Performs the conversion.

Auto Trait Implementationsยง

Blanket Implementationsยง

sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
sourceยง

impl<T> CloneToUninit for T
where T: Clone,

sourceยง

unsafe fn clone_to_uninit(&self, dst: *mut T)

๐Ÿ”ฌThis is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
sourceยง

impl<T> From<T> for T

sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

sourceยง

impl<T> Instrument for T

sourceยง

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
sourceยง

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

sourceยง

impl<T> IntoEither for T

sourceยง

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 more
sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ“˜
where F: FnOnce(&Self) -> bool,

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
sourceยง

impl<T> Same for T

sourceยง

type Output = T

Should always be Self
sourceยง

impl<T> ToOwned for T
where T: Clone,

sourceยง

type Owned = T

The resulting type after obtaining ownership.
sourceยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
sourceยง

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

sourceยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
sourceยง

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

sourceยง

fn vzip(self) -> V

sourceยง

impl<T> WithSubscriber for T

sourceยง

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
sourceยง

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more