pub trait Visitable: Graphlike {
type Map: VisitMap<Self::NodeId>;
fn visit_map(&self) -> Self::Map;
}
Trait for GraphMap that knows which datastructure is the best for its visitor map
Associated Types
Required Methods
Implementors
impl<N, E, Ty, Ix> Visitable for Graph<N, E, Ty, Ix> where Ty: EdgeType, Ix: IndexType
impl<N, E> Visitable for GraphMap<N, E> where N: Copy + Clone + Ord + Eq + Hash
impl<'a, V: Visitable> Visitable for AsUndirected<&'a V>
impl<'a, V: Visitable> Visitable for Reversed<&'a V>
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).