pub struct ExpandNode {
pub input: Box<PhysicalPlan>,
pub start_node_alias: String,
pub rel_alias: String,
pub end_node_alias: String,
pub direction: RelationshipDirection,
pub rel_type: Option<String>,
}Fields§
§input: Box<PhysicalPlan>§start_node_alias: String§rel_alias: String§end_node_alias: String§direction: RelationshipDirection§rel_type: Option<String>Trait Implementations§
Source§impl Clone for ExpandNode
impl Clone for ExpandNode
Source§fn clone(&self) -> ExpandNode
fn clone(&self) -> ExpandNode
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 ExpandNode
impl Debug for ExpandNode
Source§impl ExecutionPlan for ExpandNode
impl ExecutionPlan for ExpandNode
Auto Trait Implementations§
impl Freeze for ExpandNode
impl RefUnwindSafe for ExpandNode
impl Send for ExpandNode
impl Sync for ExpandNode
impl Unpin for ExpandNode
impl UnsafeUnpin for ExpandNode
impl UnwindSafe for ExpandNode
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