Trait reql::commands::OuterJoin [] [src]

pub trait OuterJoin {
    fn outer_join<S, F>(&self, sequence: S, function: F) -> Command where S: ToArg, F: ToArg;
}

Return a left outer join of two sequences

Note: This command is not yet fully documented. For more information and examples, please see the equivalent command in the official Java driver documentation.

Required Methods

Implementors