pub trait EdgeRemovable: Data {
type Output;
// Required method
fn remove_edge(&mut self, edge: Self::EdgeId) -> Self::Output;
}Expand description
A graph whose edge may be removed by an edge id.
Required Associated Types§
Required Methods§
fn remove_edge(&mut self, edge: Self::EdgeId) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".