Struct Cycle
pub struct Cycle { /* private fields */ }
Expand description
For recursive WithQuery WithClauses the CYCLE sql clause can be specified to avoid creating an infinite traversals that loops on graph cycles indefinitely. You specify an expression that identifies a node in the graph and that will be used to determine during the iteration of the execution of the query when appending of new values whether the new values are distinct new nodes or are already visited and therefore they should be added again into the result.
A query can have both SEARCH and CYCLE clauses.
Setting Self::set, Self::expr and Self::using is mandatory.
Implementations§
§impl Cycle
impl Cycle
pub fn new_from_expr_set_using<EXPR, ID1, ID2>(
expr: EXPR,
set: ID1,
using: ID2,
) -> Cycle
pub fn new_from_expr_set_using<EXPR, ID1, ID2>( expr: EXPR, set: ID1, using: ID2, ) -> Cycle
Create a complete Search specification from the SearchOrder and a SelectExpr. The given SelectExpr must have an alias specified.
pub fn expr<EXPR>(&mut self, expr: EXPR) -> &mut Cyclewhere
EXPR: Into<SimpleExpr>,
pub fn expr<EXPR>(&mut self, expr: EXPR) -> &mut Cyclewhere
EXPR: Into<SimpleExpr>,
The expression identifying nodes.
pub fn set<ID>(&mut self, set: ID) -> &mut Cyclewhere
ID: IntoIden,
pub fn set<ID>(&mut self, set: ID) -> &mut Cyclewhere
ID: IntoIden,
The name of the boolean column containing whether we have completed a cycle or not yet generated by this clause.
pub fn using<ID>(&mut self, using: ID) -> &mut Cyclewhere
ID: IntoIden,
pub fn using<ID>(&mut self, using: ID) -> &mut Cyclewhere
ID: IntoIden,
The name of the array typed column that contains the node ids (generated using the Self::expr) that specify the current nodes path that will be generated by this clause.
Trait Implementations§
impl StructuralPartialEq for Cycle
Auto Trait Implementations§
impl Freeze for Cycle
impl !RefUnwindSafe for Cycle
impl Send for Cycle
impl Sync for Cycle
impl Unpin for Cycle
impl !UnwindSafe for Cycle
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more