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