pub enum StateDependentPathDeclaration {
    IfSimple(Box<StateDependentPathDeclarationIfSimple>),
    IfEdgeSensitive(Box<StateDependentPathDeclarationIfEdgeSensitive>),
    IfNone(Box<StateDependentPathDeclarationIfNone>),
}Variants§
IfSimple(Box<StateDependentPathDeclarationIfSimple>)
IfEdgeSensitive(Box<StateDependentPathDeclarationIfEdgeSensitive>)
IfNone(Box<StateDependentPathDeclarationIfNone>)
Trait Implementations§
Source§impl Clone for StateDependentPathDeclaration
 
impl Clone for StateDependentPathDeclaration
Source§fn clone(&self) -> StateDependentPathDeclaration
 
fn clone(&self) -> StateDependentPathDeclaration
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 moreSource§impl<'a> From<&'a StateDependentPathDeclaration> for RefNode<'a>
 
impl<'a> From<&'a StateDependentPathDeclaration> for RefNode<'a>
Source§fn from(x: &'a StateDependentPathDeclaration) -> RefNode<'a>
 
fn from(x: &'a StateDependentPathDeclaration) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a StateDependentPathDeclaration> for RefNodes<'a>
 
impl<'a> From<&'a StateDependentPathDeclaration> for RefNodes<'a>
Source§fn from(x: &'a StateDependentPathDeclaration) -> RefNodes<'a>
 
fn from(x: &'a StateDependentPathDeclaration) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<StateDependentPathDeclaration> for AnyNode
 
impl From<StateDependentPathDeclaration> for AnyNode
Source§fn from(x: StateDependentPathDeclaration) -> AnyNode
 
fn from(x: StateDependentPathDeclaration) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a StateDependentPathDeclaration
 
impl<'a> IntoIterator for &'a StateDependentPathDeclaration
Source§impl PartialEq for StateDependentPathDeclaration
 
impl PartialEq for StateDependentPathDeclaration
Source§fn eq(&self, other: &StateDependentPathDeclaration) -> bool
 
fn eq(&self, other: &StateDependentPathDeclaration) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'a> TryFrom<&'a StateDependentPathDeclaration> for Locate
 
impl<'a> TryFrom<&'a StateDependentPathDeclaration> for Locate
impl StructuralPartialEq for StateDependentPathDeclaration
Auto Trait Implementations§
impl Freeze for StateDependentPathDeclaration
impl RefUnwindSafe for StateDependentPathDeclaration
impl Send for StateDependentPathDeclaration
impl Sync for StateDependentPathDeclaration
impl Unpin for StateDependentPathDeclaration
impl UnwindSafe for StateDependentPathDeclaration
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