struct PushBoundValueToCollectorImpl<ST, T: ?Sized> {
    p: PhantomData<(ST, T)>,
}

Fields§

§p: PhantomData<(ST, T)>

Trait Implementations§

source§

impl<DB> PushBoundValueToCollectorDB<DB> for PushBoundValueToCollectorImpl<Binary, [u8]>
where DB: Backend + HasSqlType<Binary>, [u8]: ToSql<Binary, DB> + 'static,

source§

fn push_bound_value<'a: 'b, 'b>( &self, v: InnerBindValueKind<'a>, collector: &mut <DB as Backend>::BindCollector<'b>, lookup: &mut <DB as TypeMetadata>::MetadataLookup, ) -> QueryResult<()>

source§

impl<ST, T, DB> PushBoundValueToCollectorDB<DB> for PushBoundValueToCollectorImpl<ST, T>
where DB: Backend + HasSqlType<ST>, T: ToSql<ST, DB> + 'static, Option<T>: ToSql<Nullable<ST>, DB> + 'static, ST: SqlType,

source§

fn push_bound_value<'a: 'b, 'b>( &self, v: InnerBindValueKind<'a>, collector: &mut <DB as Backend>::BindCollector<'b>, lookup: &mut <DB as TypeMetadata>::MetadataLookup, ) -> QueryResult<()>

source§

impl<DB> PushBoundValueToCollectorDB<DB> for PushBoundValueToCollectorImpl<Text, str>
where DB: Backend + HasSqlType<Text>, str: ToSql<Text, DB> + 'static,

source§

fn push_bound_value<'a: 'b, 'b>( &self, v: InnerBindValueKind<'a>, collector: &mut <DB as Backend>::BindCollector<'b>, lookup: &mut <DB as TypeMetadata>::MetadataLookup, ) -> QueryResult<()>

Auto Trait Implementations§

§

impl<ST, T> Freeze for PushBoundValueToCollectorImpl<ST, T>
where T: ?Sized,

§

impl<ST, T> RefUnwindSafe for PushBoundValueToCollectorImpl<ST, T>

§

impl<ST, T> Send for PushBoundValueToCollectorImpl<ST, T>
where ST: Send, T: Send + ?Sized,

§

impl<ST, T> Sync for PushBoundValueToCollectorImpl<ST, T>
where ST: Sync, T: Sync + ?Sized,

§

impl<ST, T> Unpin for PushBoundValueToCollectorImpl<ST, T>
where ST: Unpin, T: Unpin + ?Sized,

§

impl<ST, T> UnwindSafe for PushBoundValueToCollectorImpl<ST, T>
where ST: UnwindSafe, T: UnwindSafe + ?Sized,

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
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