pub trait EdgeNumberBoundedNode<Ix: IndexType = DefaultIx> {
// Required methods
fn max_incoming_edges(&self) -> Ix;
fn max_outgoing_edges(&self) -> Ix;
// Provided method
fn has_edge_space(&self, dir: Direction, existing_edge_count: usize) -> bool { ... }
}Required Methods§
fn max_incoming_edges(&self) -> Ix
fn max_outgoing_edges(&self) -> Ix
Provided Methods§
fn has_edge_space(&self, dir: Direction, existing_edge_count: usize) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".