Trait GraphConfig

Source
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§

Source

type Graph: ConfigurableGraph<Config = Self>

Provided Methods§

Source

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.

Implementors§