pub enum GRLSearchStrategy {
DepthFirst,
BreadthFirst,
Iterative,
}Expand description
Search strategy option for queries
Variants§
Trait Implementations§
Source§impl Clone for GRLSearchStrategy
impl Clone for GRLSearchStrategy
Source§fn clone(&self) -> GRLSearchStrategy
fn clone(&self) -> GRLSearchStrategy
Returns a duplicate 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 GRLSearchStrategy
impl Debug for GRLSearchStrategy
Source§impl Default for GRLSearchStrategy
impl Default for GRLSearchStrategy
Source§impl PartialEq for GRLSearchStrategy
impl PartialEq for GRLSearchStrategy
impl StructuralPartialEq for GRLSearchStrategy
Auto Trait Implementations§
impl Freeze for GRLSearchStrategy
impl RefUnwindSafe for GRLSearchStrategy
impl Send for GRLSearchStrategy
impl Sync for GRLSearchStrategy
impl Unpin for GRLSearchStrategy
impl UnwindSafe for GRLSearchStrategy
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