pub struct PathStep {
pub edge_type: &'static str,
pub target_label: Option<&'static str>,
}Expand description
A single step in a path pattern.
Fields§
§edge_type: &'static str§target_label: Option<&'static str>If Some, the target node must have this label.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathStep
impl RefUnwindSafe for PathStep
impl Send for PathStep
impl Sync for PathStep
impl Unpin for PathStep
impl UnsafeUnpin for PathStep
impl UnwindSafe for PathStep
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