pub trait ToGraphWalker<NK, EK, S>: Id<NK>{
// Required method
fn to_walker<'a>(
&'a self,
g: &'a TypedGraph<NK, EK, S>,
) -> SchemaResult<GraphWalker<'a, &'a Self, (), NK, EK, S, Once<((), SchemaResult<&'a Self, NK, EK, S>)>>, NK, EK, S>;
}
Required Methods§
fn to_walker<'a>( &'a self, g: &'a TypedGraph<NK, EK, S>, ) -> SchemaResult<GraphWalker<'a, &'a Self, (), NK, EK, S, Once<((), SchemaResult<&'a Self, NK, EK, S>)>>, NK, EK, S>
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.