Struct diesel::mysql::types::Datetime [−][src]
pub struct Datetime;
Represents the MySQL datetime type.
ToSql
impls
chrono::NaiveDateTime
withfeature = "chrono"
FromSql
impls
chrono::NaiveDateTime
withfeature = "chrono"
Trait Implementations
impl ToSql<Datetime, Mysql> for MYSQL_TIME
[src]
impl ToSql<Datetime, Mysql> for MYSQL_TIME
impl FromSql<Datetime, Mysql> for MYSQL_TIME
[src]
impl FromSql<Datetime, Mysql> for MYSQL_TIME
impl ToSql<Datetime, Mysql> for NaiveDateTime
[src]
impl ToSql<Datetime, Mysql> for NaiveDateTime
impl FromSql<Datetime, Mysql> for NaiveDateTime
[src]
impl FromSql<Datetime, Mysql> for NaiveDateTime
impl QueryId for Datetime
[src]
impl QueryId for Datetime
type QueryId = Datetime
A type which uniquely represents Self
in a SQL query. Read more
const HAS_STATIC_QUERY_ID: bool
HAS_STATIC_QUERY_ID: bool = true
Can the SQL generated by Self
be uniquely identified by its type? Read more
fn query_id() -> Option<TypeId>
[src]
fn query_id() -> Option<TypeId>
Returns the type id of Self::QueryId
if Self::HAS_STATIC_QUERY_ID
. Returns None
otherwise. Read more
impl NotNull for Datetime
[src]
impl NotNull for Datetime
impl SingleValue for Datetime
[src]
impl SingleValue for Datetime
impl HasSqlType<Datetime> for Mysql
[src]
impl HasSqlType<Datetime> for Mysql
impl Debug for Datetime
[src]
impl Debug for Datetime
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for Datetime
[src]
impl Clone for Datetime
fn clone(&self) -> Datetime
[src]
fn clone(&self) -> Datetime
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Copy for Datetime
[src]
impl Copy for Datetime
impl Default for Datetime
[src]
impl Default for Datetime
impl<'expr> AsExpression<Datetime> for &'expr NaiveDateTime
[src]
impl<'expr> AsExpression<Datetime> for &'expr NaiveDateTime
type Expression = Bound<Datetime, Self>
The expression being returned
fn as_expression(self) -> Self::Expression
[src]
fn as_expression(self) -> Self::Expression
Perform the conversion
impl<'expr2, 'expr> AsExpression<Datetime> for &'expr2 &'expr NaiveDateTime
[src]
impl<'expr2, 'expr> AsExpression<Datetime> for &'expr2 &'expr NaiveDateTime
type Expression = Bound<Datetime, Self>
The expression being returned
fn as_expression(self) -> Self::Expression
[src]
fn as_expression(self) -> Self::Expression
Perform the conversion
impl AsExpression<Datetime> for NaiveDateTime
[src]
impl AsExpression<Datetime> for NaiveDateTime
type Expression = Bound<Datetime, Self>
The expression being returned
fn as_expression(self) -> Self::Expression
[src]
fn as_expression(self) -> Self::Expression
Perform the conversion