pub trait DirectedOrNot {
const DIRECTED_OR_NOT: bool;
}Expand description
Whether a graph is directed or not.
Required Associated Constants§
Sourceconst DIRECTED_OR_NOT: bool
const DIRECTED_OR_NOT: bool
When the graph is directed, it is true; otherwise, it is false.
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.