pub struct AnyColumn { /* private fields */ }
Trait Implementationsยง
Sourceยงimpl From<MssqlColumn> for AnyColumn
impl From<MssqlColumn> for AnyColumn
Sourceยงfn from(column: MssqlColumn) -> AnyColumn
fn from(column: MssqlColumn) -> AnyColumn
Converts to this type from the input type.
Sourceยงimpl From<MySqlColumn> for AnyColumn
impl From<MySqlColumn> for AnyColumn
Sourceยงfn from(column: MySqlColumn) -> AnyColumn
fn from(column: MySqlColumn) -> AnyColumn
Converts to this type from the input type.
Sourceยงimpl From<SqliteColumn> for AnyColumn
impl From<SqliteColumn> for AnyColumn
Sourceยงfn from(column: SqliteColumn) -> AnyColumn
fn from(column: SqliteColumn) -> AnyColumn
Converts to this type from the input type.
Auto Trait Implementationsยง
impl Freeze for AnyColumn
impl RefUnwindSafe for AnyColumn
impl Send for AnyColumn
impl Sync for AnyColumn
impl Unpin for AnyColumn
impl UnwindSafe for AnyColumn
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ยงunsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
๐ฌThis is a nightly-only experimental API. (
clone_to_uninit
)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