pub struct CartesianJoin {
pub left: Arc<Plan>,
pub right: Arc<Plan>,
}Fields§
§left: Arc<Plan>Output columns from this plan Columns defining the output of the left plan The left plan; Left is just arbitrary
right: Arc<Plan>Columns defining the output of the right plan The right plan; Right is just arbitrary
Auto Trait Implementations§
impl Freeze for CartesianJoin
impl RefUnwindSafe for CartesianJoin
impl Send for CartesianJoin
impl Sync for CartesianJoin
impl Unpin for CartesianJoin
impl UnwindSafe for CartesianJoin
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