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