pub trait UniformEdgeKind: EdgeKind {
// Required method
fn orientation() -> Orientation;
// Provided methods
fn is_directed() -> bool { ... }
fn is_undirected() -> bool { ... }
}Required Methods§
fn orientation() -> Orientation
Provided Methods§
fn is_directed() -> bool
fn is_undirected() -> bool
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.