Struct diesel_dynamic_schema::dynamic_value::Any
source · pub struct Any;
Expand description
A marker type used to indicate that
the provided FromSql
impl does handle
any passed database value, independently
from the actual value kind
Trait Implementations§
source§impl QueryMetadata<Any> for Mysql
impl QueryMetadata<Any> for Mysql
source§fn row_metadata(
_lookup: &mut Self::MetadataLookup,
out: &mut Vec<Option<Self::TypeMetadata>>
)
fn row_metadata( _lookup: &mut Self::MetadataLookup, out: &mut Vec<Option<Self::TypeMetadata>> )
The exact return value of this function is considered to be a
backend specific implementation detail. You should not rely on those
values if you not own the corresponding backend
source§impl QueryMetadata<Any> for Pg
impl QueryMetadata<Any> for Pg
source§fn row_metadata(
_lookup: &mut Self::MetadataLookup,
out: &mut Vec<Option<Self::TypeMetadata>>
)
fn row_metadata( _lookup: &mut Self::MetadataLookup, out: &mut Vec<Option<Self::TypeMetadata>> )
The exact return value of this function is considered to be a
backend specific implementation detail. You should not rely on those
values if you not own the corresponding backend
source§impl QueryMetadata<Any> for Sqlite
impl QueryMetadata<Any> for Sqlite
source§fn row_metadata(
_lookup: &mut Self::MetadataLookup,
out: &mut Vec<Option<Self::TypeMetadata>>
)
fn row_metadata( _lookup: &mut Self::MetadataLookup, out: &mut Vec<Option<Self::TypeMetadata>> )
The exact return value of this function is considered to be a
backend specific implementation detail. You should not rely on those
values if you not own the corresponding backend
impl TypedExpressionType for Any
Auto Trait Implementations§
impl Freeze for Any
impl RefUnwindSafe for Any
impl Send for Any
impl Sync for Any
impl Unpin for Any
impl UnwindSafe for Any
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> IntoSql for T
impl<T> IntoSql for T
source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self
to an expression for Diesel’s query builder. Read moresource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self
to an expression for Diesel’s query builder. Read more