pub struct ExpandVarLengthNode {
pub input: Box<PhysicalPlan>,
pub start_node_alias: String,
pub end_node_alias: String,
pub direction: RelationshipDirection,
pub rel_type: Option<String>,
pub min_hops: u32,
pub max_hops: u32,
}Fields§
§input: Box<PhysicalPlan>§start_node_alias: String§end_node_alias: String§direction: RelationshipDirection§rel_type: Option<String>§min_hops: u32§max_hops: u32Trait Implementations§
Source§impl Clone for ExpandVarLengthNode
impl Clone for ExpandVarLengthNode
Source§fn clone(&self) -> ExpandVarLengthNode
fn clone(&self) -> ExpandVarLengthNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExpandVarLengthNode
impl Debug for ExpandVarLengthNode
Source§impl ExecutionPlan for ExpandVarLengthNode
impl ExecutionPlan for ExpandVarLengthNode
Auto Trait Implementations§
impl Freeze for ExpandVarLengthNode
impl RefUnwindSafe for ExpandVarLengthNode
impl Send for ExpandVarLengthNode
impl Sync for ExpandVarLengthNode
impl Unpin for ExpandVarLengthNode
impl UnsafeUnpin for ExpandVarLengthNode
impl UnwindSafe for ExpandVarLengthNode
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