Trait depends::Identifiable

source ·
pub trait Identifiable: Named {
    // Required method
    fn id(&self) -> usize;
}
Expand description

A unique integer value assigned to each node created in a particular runtime, allowing a Visitor to track visited nodes when resolving graphs.

Required Methods§

source

fn id(&self) -> usize

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> Identifiable for Rc<T>
where T: Identifiable,

source§

fn id(&self) -> usize

Implementors§

source§

impl<D, F, T: Named> Identifiable for DerivedNode<D, F, T>

source§

impl<T: Named> Identifiable for InputNode<T>