Struct sqlx_oldapi::any::AnyTypeInfo
source · pub struct AnyTypeInfo(/* private fields */);
Trait Implementations§
source§impl Clone for AnyTypeInfo
impl Clone for AnyTypeInfo
source§fn clone(&self) -> AnyTypeInfo
fn clone(&self) -> AnyTypeInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AnyTypeInfo
impl Debug for AnyTypeInfo
source§impl Display for AnyTypeInfo
impl Display for AnyTypeInfo
source§impl From<MssqlTypeInfo> for AnyTypeInfo
impl From<MssqlTypeInfo> for AnyTypeInfo
source§fn from(ty: MssqlTypeInfo) -> AnyTypeInfo
fn from(ty: MssqlTypeInfo) -> AnyTypeInfo
Converts to this type from the input type.
source§impl From<MySqlTypeInfo> for AnyTypeInfo
impl From<MySqlTypeInfo> for AnyTypeInfo
source§fn from(ty: MySqlTypeInfo) -> AnyTypeInfo
fn from(ty: MySqlTypeInfo) -> AnyTypeInfo
Converts to this type from the input type.
source§impl From<PgTypeInfo> for AnyTypeInfo
impl From<PgTypeInfo> for AnyTypeInfo
source§fn from(ty: PgTypeInfo) -> AnyTypeInfo
fn from(ty: PgTypeInfo) -> AnyTypeInfo
Converts to this type from the input type.
source§impl From<SqliteTypeInfo> for AnyTypeInfo
impl From<SqliteTypeInfo> for AnyTypeInfo
source§fn from(ty: SqliteTypeInfo) -> AnyTypeInfo
fn from(ty: SqliteTypeInfo) -> AnyTypeInfo
Converts to this type from the input type.
source§impl PartialEq for AnyTypeInfo
impl PartialEq for AnyTypeInfo
source§fn eq(&self, other: &AnyTypeInfo) -> bool
fn eq(&self, other: &AnyTypeInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AnyTypeInfo
Auto Trait Implementations§
impl Freeze for AnyTypeInfo
impl RefUnwindSafe for AnyTypeInfo
impl Send for AnyTypeInfo
impl Sync for AnyTypeInfo
impl Unpin for AnyTypeInfo
impl UnwindSafe for AnyTypeInfo
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> 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