pub struct AnyTypeInfo(pub AnyTypeInfoKind);
Tuple Fieldsยง
ยง0: AnyTypeInfoKind
Trait Implementationsยง
Sourceยงimpl Clone for AnyTypeInfo
impl Clone for AnyTypeInfo
Sourceยงfn clone(&self) -> AnyTypeInfo
fn clone(&self) -> AnyTypeInfo
Returns a duplicate 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
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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