pub trait GraphRef {
// Required method
fn graph_ref(&self) -> &FixedPointResidentGraph;
}Expand description
Trait abstracting over owned and borrowed resident graph references.
Required Methods§
fn graph_ref(&self) -> &FixedPointResidentGraph
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".