pub struct DistinctExpression {
pub token: Token,
pub expr: Box<Expression>,
}Expand description
DISTINCT expression
Fields§
§token: Token§expr: Box<Expression>Trait Implementations§
Source§impl Clone for DistinctExpression
impl Clone for DistinctExpression
Source§fn clone(&self) -> DistinctExpression
fn clone(&self) -> DistinctExpression
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 Debug for DistinctExpression
impl Debug for DistinctExpression
Source§impl Display for DistinctExpression
impl Display for DistinctExpression
Source§impl PartialEq for DistinctExpression
impl PartialEq for DistinctExpression
impl StructuralPartialEq for DistinctExpression
Auto Trait Implementations§
impl Freeze for DistinctExpression
impl RefUnwindSafe for DistinctExpression
impl Send for DistinctExpression
impl Sync for DistinctExpression
impl Unpin for DistinctExpression
impl UnsafeUnpin for DistinctExpression
impl UnwindSafe for DistinctExpression
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