Struct ExprIntersects
pub struct ExprIntersects {
pub lhs: Box<Expr>,
pub rhs: Box<Expr>,
}Expand description
Boolean: lhs and rhs (both arrays) share at least one element.
PostgreSQL: lhs && rhs. Drives Path::intersects.
Fields§
§lhs: Box<Expr>The first array operand.
rhs: Box<Expr>The second array operand.
Trait Implementations§
§impl Clone for ExprIntersects
impl Clone for ExprIntersects
§fn clone(&self) -> ExprIntersects
fn clone(&self) -> ExprIntersects
Returns a duplicate 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 more§impl Debug for ExprIntersects
impl Debug for ExprIntersects
§impl From<ExprIntersects> for Expr
impl From<ExprIntersects> for Expr
§fn from(value: ExprIntersects) -> Expr
fn from(value: ExprIntersects) -> Expr
Converts to this type from the input type.
§impl PartialEq for ExprIntersects
impl PartialEq for ExprIntersects
impl StructuralPartialEq for ExprIntersects
Auto Trait Implementations§
impl Freeze for ExprIntersects
impl RefUnwindSafe for ExprIntersects
impl Send for ExprIntersects
impl Sync for ExprIntersects
impl Unpin for ExprIntersects
impl UnsafeUnpin for ExprIntersects
impl UnwindSafe for ExprIntersects
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