Skip to main content

GraphBase

Trait GraphBase 

Source
pub trait GraphBase: TopologyBase { }
Expand description

Base capability for graph views over topology storage.

Graph-facing name for TopologyBase. Bundles the associated ElementId and RelationId types under graph vocabulary so generic code can require a graph base contract without naming topology traits directly.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> GraphBase for T
where T: TopologyBase,