pub trait ConnectNodeIds {
// Required method
fn connect_nodeids(
&mut self,
src: NodeId,
dst: NodeId,
) -> Result<(), BetweennessCentralityError>;
}Required Methods§
fn connect_nodeids( &mut self, src: NodeId, dst: NodeId, ) -> Result<(), BetweennessCentralityError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".