pub trait GraphConfig: Clone {
type Graph: ConfigurableGraph<Config = Self>;
// Provided method
fn into_graph(self) -> Result<Self::Graph, SourceError>
where Self: Sized { ... }
}Required Associated Types§
type Graph: ConfigurableGraph<Config = Self>
Provided Methods§
fn into_graph(self) -> Result<Self::Graph, SourceError>where
Self: Sized,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.