pub enum EdgeSensitivePathDeclaration<'a> {
Parallel(Box<(ParallelEdgeSensitivePathDescription<'a>, Metadata<'a>, PathDelayValue<'a>)>),
Full(Box<(FullEdgeSensitivePathDescription<'a>, Metadata<'a>, PathDelayValue<'a>)>),
}Variants§
Parallel(Box<(ParallelEdgeSensitivePathDescription<'a>, Metadata<'a>, PathDelayValue<'a>)>)
Full(Box<(FullEdgeSensitivePathDescription<'a>, Metadata<'a>, PathDelayValue<'a>)>)
Implementations§
Source§impl<'a: 'b, 'b> EdgeSensitivePathDeclaration<'a>
impl<'a: 'b, 'b> EdgeSensitivePathDeclaration<'a>
Sourcepub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
pub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
Iterate across the EdgeSensitivePathDeclaration and its children
Trait Implementations§
Source§impl<'a> Clone for EdgeSensitivePathDeclaration<'a>
impl<'a> Clone for EdgeSensitivePathDeclaration<'a>
Source§fn clone(&self) -> EdgeSensitivePathDeclaration<'a>
fn clone(&self) -> EdgeSensitivePathDeclaration<'a>
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> Debug for EdgeSensitivePathDeclaration<'a>
impl<'a> Debug for EdgeSensitivePathDeclaration<'a>
Source§impl<'a: 'b, 'b> From<&'b EdgeSensitivePathDeclaration<'a>> for Node<'a, 'b>
impl<'a: 'b, 'b> From<&'b EdgeSensitivePathDeclaration<'a>> for Node<'a, 'b>
Source§fn from(value: &'b EdgeSensitivePathDeclaration<'a>) -> Self
fn from(value: &'b EdgeSensitivePathDeclaration<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a: 'b, 'b> IntoIterator for &'b EdgeSensitivePathDeclaration<'a>
impl<'a: 'b, 'b> IntoIterator for &'b EdgeSensitivePathDeclaration<'a>
Source§impl<'a: 'b, 'b> Nodes<'a, 'b> for EdgeSensitivePathDeclaration<'a>
impl<'a: 'b, 'b> Nodes<'a, 'b> for EdgeSensitivePathDeclaration<'a>
Source§impl<'a> PartialEq for EdgeSensitivePathDeclaration<'a>
impl<'a> PartialEq for EdgeSensitivePathDeclaration<'a>
Source§fn eq(&self, other: &EdgeSensitivePathDeclaration<'a>) -> bool
fn eq(&self, other: &EdgeSensitivePathDeclaration<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for EdgeSensitivePathDeclaration<'a>
Auto Trait Implementations§
impl<'a> Freeze for EdgeSensitivePathDeclaration<'a>
impl<'a> RefUnwindSafe for EdgeSensitivePathDeclaration<'a>
impl<'a> Send for EdgeSensitivePathDeclaration<'a>
impl<'a> Sync for EdgeSensitivePathDeclaration<'a>
impl<'a> Unpin for EdgeSensitivePathDeclaration<'a>
impl<'a> UnsafeUnpin for EdgeSensitivePathDeclaration<'a>
impl<'a> UnwindSafe for EdgeSensitivePathDeclaration<'a>
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