pub struct GraphStepPlan {
pub edge_types: Vec<String>,
pub direction: Direction,
pub min_depth: u32,
pub max_depth: u32,
pub target_alias: String,
}Fields§
§edge_types: Vec<String>§direction: Direction§min_depth: u32§max_depth: u32§target_alias: StringTrait Implementations§
Source§impl Clone for GraphStepPlan
impl Clone for GraphStepPlan
Source§fn clone(&self) -> GraphStepPlan
fn clone(&self) -> GraphStepPlan
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 GraphStepPlan
impl RefUnwindSafe for GraphStepPlan
impl Send for GraphStepPlan
impl Sync for GraphStepPlan
impl Unpin for GraphStepPlan
impl UnsafeUnpin for GraphStepPlan
impl UnwindSafe for GraphStepPlan
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