Enum autopulse::db::conn::multi_connection_impl::row::MultiRow

source ·
pub enum MultiRow<'conn, 'query> {
    Postgresql(<PgConnection as LoadConnection>::Row<'conn, 'query>),
    Sqlite(<SqliteConnection as LoadConnection>::Row<'conn, 'query>),
}

Variants§

§

Postgresql(<PgConnection as LoadConnection>::Row<'conn, 'query>)

§

Sqlite(<SqliteConnection as LoadConnection>::Row<'conn, 'query>)

Trait Implementations§

source§

impl<'conn, 'query> Row<'conn, MultiBackend> for MultiRow<'conn, 'query>

source§

type Field<'a> = MultiField<'a, 'a> where Self: 'a, 'conn: 'a

Field type returned by a Row implementation Read more
source§

fn field_count(&self) -> usize

Get the number of fields in the current row
source§

fn get<'b, I>(&'b self, idx: I) -> Option<Self::Field<'b>>
where Self: RowIndex<I>, 'conn: 'b,

Get the field with the provided index from the row. Read more
§

fn get_value<ST, T, I>(&self, idx: I) -> Result<T, Box<dyn Error + Sync + Send>>
where Self: RowIndex<I>, T: FromSql<ST, DB>,

Get a deserialized value with the provided index from the row.
source§

impl<'conn, 'query, 'c> RowIndex<&'c str> for MultiRow<'conn, 'query>

source§

fn idx(&self, idx: &'c str) -> Option<usize>

Get the numeric index inside the current row for the provided index value
source§

impl<'conn, 'query> RowIndex<usize> for MultiRow<'conn, 'query>

source§

fn idx(&self, idx: usize) -> Option<usize>

Get the numeric index inside the current row for the provided index value
source§

impl<'conn, 'query> RowSealed for MultiRow<'conn, 'query>

Auto Trait Implementations§

§

impl<'conn, 'query> Freeze for MultiRow<'conn, 'query>

§

impl<'conn, 'query> !RefUnwindSafe for MultiRow<'conn, 'query>

§

impl<'conn, 'query> !Send for MultiRow<'conn, 'query>

§

impl<'conn, 'query> !Sync for MultiRow<'conn, 'query>

§

impl<'conn, 'query> Unpin for MultiRow<'conn, 'query>

§

impl<'conn, 'query> !UnwindSafe for MultiRow<'conn, 'query>

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

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.

§

impl<T> IntoSql for T

§

fn into_sql<T>(self) -> Self::Expression
where Self: Sized + AsExpression<T>, T: SqlType + TypedExpressionType,

Convert self to an expression for Diesel’s query builder. Read more
§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,

Convert &self to an expression for Diesel’s query builder. Read more
§

impl<'a, R, DB> NamedRow<'a, DB> for R
where R: Row<'a, DB>, DB: Backend,

§

fn get<ST, T>( &self, column_name: &str, ) -> Result<T, Box<dyn Error + Sync + Send>>
where T: FromSql<ST, DB>,

Retrieve and deserialize a single value from the query Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T