pub struct ExpandStep {
pub source_column: usize,
pub direction: Direction,
pub edge_type: Option<String>,
}Expand description
Configuration for a single expand step in a lazy chain.
Fields§
§source_column: usizeSource column index within the current level.
direction: DirectionDirection of edge traversal.
edge_type: Option<String>Optional edge type filter.
Trait Implementations§
Source§impl Clone for ExpandStep
impl Clone for ExpandStep
Source§fn clone(&self) -> ExpandStep
fn clone(&self) -> ExpandStep
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 moreAuto Trait Implementations§
impl Freeze for ExpandStep
impl RefUnwindSafe for ExpandStep
impl Send for ExpandStep
impl Sync for ExpandStep
impl Unpin for ExpandStep
impl UnwindSafe for ExpandStep
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