Skip to main content

InSubqueryLhs

Trait InSubqueryLhs 

Source
pub trait InSubqueryLhs<'a, V: SQLParam, M>: Sized {
    type SQLType: DataType;
    type Aggregate: AggregateKind;

    // Required method
    fn into_lhs_sql(self) -> SQL<'a, V>;
}
Expand description

Left-hand side of an IN (subquery) expression.

Accepts single expressions (col) or tuples ((col_a, col_b)). The marker M is inferred — callers never specify it.

Required Associated Types§

Required Methods§

Source

fn into_lhs_sql(self) -> SQL<'a, V>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§