pub trait FindEdgeBccWithScratch<GH> {
// Required methods
fn find_edge_bcc_with_scratch(
&mut self,
bcc: &mut BiconnectedComponentsScratch<GH>,
edge: &Edge,
) -> Result<(), BetweennessCentralityError>;
fn find_edge_bcc_with_scratch_step(
&mut self,
v: NodeId,
bcc: &mut BiconnectedComponentsScratch<GH>,
edge: &Edge,
) -> Result<(), BetweennessCentralityError>;
}Required Methods§
fn find_edge_bcc_with_scratch( &mut self, bcc: &mut BiconnectedComponentsScratch<GH>, edge: &Edge, ) -> Result<(), BetweennessCentralityError>
fn find_edge_bcc_with_scratch_step( &mut self, v: NodeId, bcc: &mut BiconnectedComponentsScratch<GH>, edge: &Edge, ) -> Result<(), BetweennessCentralityError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".