pub struct TypedExpression<V> { /* private fields */ }Implementations§
Source§impl<V> TypedExpression<V>
impl<V> TypedExpression<V>
pub fn eq(self, value: impl IntoSqlValue<V>) -> Expression
pub fn ne(self, value: impl IntoSqlValue<V>) -> Expression
pub fn gt(self, value: impl IntoSqlValue<V>) -> Expression
pub fn gte(self, value: impl IntoSqlValue<V>) -> Expression
pub fn lt(self, value: impl IntoSqlValue<V>) -> Expression
pub fn lte(self, value: impl IntoSqlValue<V>) -> Expression
pub fn over(self) -> WindowExpression<V>
Sourcepub fn expression(self) -> Expression
pub fn expression(self) -> Expression
Consume this typed expression for composition in another expression.
Trait Implementations§
Source§impl<V: Clone> Clone for TypedExpression<V>
impl<V: Clone> Clone for TypedExpression<V>
Source§fn clone(&self) -> TypedExpression<V>
fn clone(&self) -> TypedExpression<V>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<V: Debug> Debug for TypedExpression<V>
impl<V: Debug> Debug for TypedExpression<V>
Source§impl<V> Selection for TypedExpression<V>
impl<V> Selection for TypedExpression<V>
type Output = V
fn expressions(self) -> Vec<Expression>
Source§impl<V> SelectionExt for TypedExpression<V>
impl<V> SelectionExt for TypedExpression<V>
fn alias(self, alias: &'static str) -> AliasedSelection<Self>
Auto Trait Implementations§
impl<V> Freeze for TypedExpression<V>
impl<V> RefUnwindSafe for TypedExpression<V>
impl<V> Send for TypedExpression<V>
impl<V> Sync for TypedExpression<V>
impl<V> Unpin for TypedExpression<V>
impl<V> UnsafeUnpin for TypedExpression<V>
impl<V> UnwindSafe for TypedExpression<V>
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