pub enum PathDeclaration {
SimplePathDeclaration(Box<(SimplePathDeclaration, Symbol)>),
EdgeSensitivePathDeclaration(Box<(EdgeSensitivePathDeclaration, Symbol)>),
StateDependentPathDeclaration(Box<(StateDependentPathDeclaration, Symbol)>),
}Variants
SimplePathDeclaration(Box<(SimplePathDeclaration, Symbol)>)
EdgeSensitivePathDeclaration(Box<(EdgeSensitivePathDeclaration, Symbol)>)
StateDependentPathDeclaration(Box<(StateDependentPathDeclaration, Symbol)>)
Trait Implementations
sourceimpl Clone for PathDeclaration
impl Clone for PathDeclaration
sourcefn clone(&self) -> PathDeclaration
fn clone(&self) -> PathDeclaration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PathDeclaration
impl Debug for PathDeclaration
sourceimpl<'a> From<&'a PathDeclaration> for RefNode<'a>
impl<'a> From<&'a PathDeclaration> for RefNode<'a>
sourcefn from(x: &'a PathDeclaration) -> Self
fn from(x: &'a PathDeclaration) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a PathDeclaration> for RefNodes<'a>
impl<'a> From<&'a PathDeclaration> for RefNodes<'a>
sourcefn from(x: &'a PathDeclaration) -> Self
fn from(x: &'a PathDeclaration) -> Self
Converts to this type from the input type.
sourceimpl From<PathDeclaration> for AnyNode
impl From<PathDeclaration> for AnyNode
sourcefn from(x: PathDeclaration) -> Self
fn from(x: PathDeclaration) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a PathDeclaration
impl<'a> IntoIterator for &'a PathDeclaration
sourceimpl PartialEq<PathDeclaration> for PathDeclaration
impl PartialEq<PathDeclaration> for PathDeclaration
sourcefn eq(&self, other: &PathDeclaration) -> bool
fn eq(&self, other: &PathDeclaration) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &PathDeclaration) -> bool
fn ne(&self, other: &PathDeclaration) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a PathDeclaration> for Locate
impl<'a> TryFrom<&'a PathDeclaration> for Locate
sourceimpl TryFrom<AnyNode> for PathDeclaration
impl TryFrom<AnyNode> for PathDeclaration
sourceimpl TryFrom<PathDeclaration> for Locate
impl TryFrom<PathDeclaration> for Locate
impl StructuralPartialEq for PathDeclaration
Auto Trait Implementations
impl RefUnwindSafe for PathDeclaration
impl Send for PathDeclaration
impl Sync for PathDeclaration
impl Unpin for PathDeclaration
impl UnwindSafe for PathDeclaration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more