pub trait LateralSource: Send {
// Required methods
fn rows_for(&mut self, left: &OwnedPhysicalRow) -> ExecResult<LateralRows>;
fn matches(&mut self, joined: &OwnedPhysicalRow) -> ExecResult<bool>;
}Required Methods§
fn rows_for(&mut self, left: &OwnedPhysicalRow) -> ExecResult<LateralRows>
fn matches(&mut self, joined: &OwnedPhysicalRow) -> ExecResult<bool>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".