pub struct MonetDbDialect;Expand description
MonetDB SQL dialect.
Trait Implementations§
Source§impl Clone for MonetDbDialect
impl Clone for MonetDbDialect
Source§fn clone(&self) -> MonetDbDialect
fn clone(&self) -> MonetDbDialect
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 MonetDbDialect
impl Debug for MonetDbDialect
Source§impl SqlDataType<MonetDbDialect> for String
impl SqlDataType<MonetDbDialect> for String
Source§fn sql_type() -> ColumnType<MonetDbDialect>
fn sql_type() -> ColumnType<MonetDbDialect>
Gets
ColumnType for given Dialect corresponding to Self.Source§impl SqlDataType<MonetDbDialect> for bool
impl SqlDataType<MonetDbDialect> for bool
Source§fn sql_type() -> ColumnType<MonetDbDialect>
fn sql_type() -> ColumnType<MonetDbDialect>
Gets
ColumnType for given Dialect corresponding to Self.Source§impl SqlDataType<MonetDbDialect> for f64
impl SqlDataType<MonetDbDialect> for f64
Source§fn sql_type() -> ColumnType<MonetDbDialect>
fn sql_type() -> ColumnType<MonetDbDialect>
Gets
ColumnType for given Dialect corresponding to Self.Source§impl SqlDataType<MonetDbDialect> for i16
impl SqlDataType<MonetDbDialect> for i16
Source§fn sql_type() -> ColumnType<MonetDbDialect>
fn sql_type() -> ColumnType<MonetDbDialect>
Gets
ColumnType for given Dialect corresponding to Self.Source§impl SqlDataType<MonetDbDialect> for i32
impl SqlDataType<MonetDbDialect> for i32
Source§fn sql_type() -> ColumnType<MonetDbDialect>
fn sql_type() -> ColumnType<MonetDbDialect>
Gets
ColumnType for given Dialect corresponding to Self.Source§impl SqlDataType<MonetDbDialect> for i64
impl SqlDataType<MonetDbDialect> for i64
Source§fn sql_type() -> ColumnType<MonetDbDialect>
fn sql_type() -> ColumnType<MonetDbDialect>
Gets
ColumnType for given Dialect corresponding to Self.Source§impl SqlDataType<MonetDbDialect> for i8
impl SqlDataType<MonetDbDialect> for i8
Source§fn sql_type() -> ColumnType<MonetDbDialect>
fn sql_type() -> ColumnType<MonetDbDialect>
Gets
ColumnType for given Dialect corresponding to Self.impl Copy for MonetDbDialect
impl Dialect for MonetDbDialect
Auto Trait Implementations§
impl Freeze for MonetDbDialect
impl RefUnwindSafe for MonetDbDialect
impl Send for MonetDbDialect
impl Sync for MonetDbDialect
impl Unpin for MonetDbDialect
impl UnwindSafe for MonetDbDialect
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