pub struct EdgeScanOp {
pub variable: String,
pub edge_type: Option<String>,
pub input: Option<Box<LogicalOperator>>,
}Expand description
Scan edges from the graph.
Fields§
§variable: StringVariable name to bind the edge to.
edge_type: Option<String>Optional edge type filter.
input: Option<Box<LogicalOperator>>Child operator (if any).
Trait Implementations§
Source§impl Clone for EdgeScanOp
impl Clone for EdgeScanOp
Source§fn clone(&self) -> EdgeScanOp
fn clone(&self) -> EdgeScanOp
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 EdgeScanOp
impl RefUnwindSafe for EdgeScanOp
impl Send for EdgeScanOp
impl Sync for EdgeScanOp
impl Unpin for EdgeScanOp
impl UnwindSafe for EdgeScanOp
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