pub struct AllAnyExpression {
pub token: Token,
pub left: Box<Expression>,
pub operator: SmartString,
pub all_any_type: AllAnyType,
pub subquery: Box<SelectStatement>,
}Expand description
ALL/ANY/SOME subquery expression (e.g., x > ALL (SELECT …))
Fields§
§token: Token§left: Box<Expression>§operator: SmartString§all_any_type: AllAnyType§subquery: Box<SelectStatement>Trait Implementations§
Source§impl Clone for AllAnyExpression
impl Clone for AllAnyExpression
Source§fn clone(&self) -> AllAnyExpression
fn clone(&self) -> AllAnyExpression
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 AllAnyExpression
impl Debug for AllAnyExpression
Source§impl Display for AllAnyExpression
impl Display for AllAnyExpression
Source§impl PartialEq for AllAnyExpression
impl PartialEq for AllAnyExpression
impl StructuralPartialEq for AllAnyExpression
Auto Trait Implementations§
impl Freeze for AllAnyExpression
impl RefUnwindSafe for AllAnyExpression
impl Send for AllAnyExpression
impl Sync for AllAnyExpression
impl Unpin for AllAnyExpression
impl UnsafeUnpin for AllAnyExpression
impl UnwindSafe for AllAnyExpression
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