Enum sea_query::query::SearchOrder
source · pub enum SearchOrder {
BREADTH,
DEPTH,
}
Expand description
For recursive WithQuery WithClauses the traversing order can be specified in some databases that support this functionality.
Variants§
BREADTH
Breadth first traversal during the execution of the recursive query.
DEPTH
Depth first traversal during the execution of the recursive query.
Trait Implementations§
source§impl Clone for SearchOrder
impl Clone for SearchOrder
source§fn clone(&self) -> SearchOrder
fn clone(&self) -> SearchOrder
Returns a copy 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