pub struct ChronoDurationProxy(pub Duration);
Expand description
A proxy type for which the diesel traits are implemented. Use this type whenever
you want to operate with chrono::Duration
.
Tuple Fields§
§0: Duration
Trait Implementations§
Source§impl<'__expr> AsExpression<BigInt> for &'__expr ChronoDurationProxy
impl<'__expr> AsExpression<BigInt> for &'__expr ChronoDurationProxy
Source§type Expression = Bound<BigInt, &'__expr ChronoDurationProxy>
type Expression = Bound<BigInt, &'__expr ChronoDurationProxy>
The expression being returned
Source§fn as_expression(self) -> <Self as AsExpression<BigInt>>::Expression
fn as_expression(self) -> <Self as AsExpression<BigInt>>::Expression
Perform the conversion
Source§impl AsExpression<BigInt> for ChronoDurationProxy
impl AsExpression<BigInt> for ChronoDurationProxy
Source§type Expression = Bound<BigInt, ChronoDurationProxy>
type Expression = Bound<BigInt, ChronoDurationProxy>
The expression being returned
Source§fn as_expression(self) -> <Self as AsExpression<BigInt>>::Expression
fn as_expression(self) -> <Self as AsExpression<BigInt>>::Expression
Perform the conversion
Source§impl<'__expr> AsExpression<Nullable<BigInt>> for &'__expr ChronoDurationProxy
impl<'__expr> AsExpression<Nullable<BigInt>> for &'__expr ChronoDurationProxy
Source§type Expression = Bound<Nullable<BigInt>, &'__expr ChronoDurationProxy>
type Expression = Bound<Nullable<BigInt>, &'__expr ChronoDurationProxy>
The expression being returned
Source§fn as_expression(self) -> <Self as AsExpression<Nullable<BigInt>>>::Expression
fn as_expression(self) -> <Self as AsExpression<Nullable<BigInt>>>::Expression
Perform the conversion
Source§impl AsExpression<Nullable<BigInt>> for ChronoDurationProxy
impl AsExpression<Nullable<BigInt>> for ChronoDurationProxy
Source§type Expression = Bound<Nullable<BigInt>, ChronoDurationProxy>
type Expression = Bound<Nullable<BigInt>, ChronoDurationProxy>
The expression being returned
Source§fn as_expression(self) -> <Self as AsExpression<Nullable<BigInt>>>::Expression
fn as_expression(self) -> <Self as AsExpression<Nullable<BigInt>>>::Expression
Perform the conversion
Source§impl AsRef<TimeDelta> for ChronoDurationProxy
impl AsRef<TimeDelta> for ChronoDurationProxy
Source§impl Clone for ChronoDurationProxy
impl Clone for ChronoDurationProxy
Source§fn clone(&self) -> ChronoDurationProxy
fn clone(&self) -> ChronoDurationProxy
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 ChronoDurationProxy
impl Debug for ChronoDurationProxy
Source§impl Deref for ChronoDurationProxy
impl Deref for ChronoDurationProxy
Source§impl From<TimeDelta> for ChronoDurationProxy
impl From<TimeDelta> for ChronoDurationProxy
Source§fn from(duration: Duration) -> ChronoDurationProxy
fn from(duration: Duration) -> ChronoDurationProxy
Converts to this type from the input type.
Source§impl<DB> FromSql<BigInt, DB> for ChronoDurationProxy
impl<DB> FromSql<BigInt, DB> for ChronoDurationProxy
Source§impl Ord for ChronoDurationProxy
impl Ord for ChronoDurationProxy
Source§fn cmp(&self, other: &ChronoDurationProxy) -> Ordering
fn cmp(&self, other: &ChronoDurationProxy) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ChronoDurationProxy
impl PartialEq for ChronoDurationProxy
Source§impl PartialOrd for ChronoDurationProxy
impl PartialOrd for ChronoDurationProxy
Source§impl<__DB, __ST> Queryable<__ST, __DB> for ChronoDurationProxy
impl<__DB, __ST> Queryable<__ST, __DB> for ChronoDurationProxy
Source§impl<DB> ToSql<BigInt, DB> for ChronoDurationProxy
impl<DB> ToSql<BigInt, DB> for ChronoDurationProxy
impl Copy for ChronoDurationProxy
impl Eq for ChronoDurationProxy
impl StructuralPartialEq for ChronoDurationProxy
Auto Trait Implementations§
impl Freeze for ChronoDurationProxy
impl RefUnwindSafe for ChronoDurationProxy
impl Send for ChronoDurationProxy
impl Sync for ChronoDurationProxy
impl Unpin for ChronoDurationProxy
impl UnwindSafe for ChronoDurationProxy
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> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self
to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self
to an expression for Diesel’s query builder. Read more