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
sourceimpl Clone for SearchOrder
impl Clone for SearchOrder
sourcefn clone(&self) -> SearchOrder
fn clone(&self) -> SearchOrder
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations
impl RefUnwindSafe for SearchOrder
impl Send for SearchOrder
impl Sync for SearchOrder
impl Unpin for SearchOrder
impl UnwindSafe for SearchOrder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more