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 moresource§impl Debug for SearchOrder
impl Debug for SearchOrder
source§impl PartialEq<SearchOrder> for SearchOrder
impl PartialEq<SearchOrder> for SearchOrder
source§fn eq(&self, other: &SearchOrder) -> bool
fn eq(&self, other: &SearchOrder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SearchOrder
Auto Trait Implementations§
impl RefUnwindSafe for SearchOrder
impl Send for SearchOrder
impl Sync for SearchOrder
impl Unpin for SearchOrder
impl UnwindSafe for SearchOrder
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