pub struct ConnectedComponentsAlgorithm;Expand description
Connected components algorithm wrapper.
Trait Implementations§
Source§impl GraphAlgorithm for ConnectedComponentsAlgorithm
impl GraphAlgorithm for ConnectedComponentsAlgorithm
Source§fn description(&self) -> &str
fn description(&self) -> &str
Returns a description of the algorithm.
Source§fn parameters(&self) -> &[ParameterDef]
fn parameters(&self) -> &[ParameterDef]
Returns the parameter definitions for this algorithm.
Source§fn execute(
&self,
store: &LpgStore,
_params: &Parameters,
) -> Result<AlgorithmResult>
fn execute( &self, store: &LpgStore, _params: &Parameters, ) -> Result<AlgorithmResult>
Executes the algorithm on the given graph store.
Auto Trait Implementations§
impl Freeze for ConnectedComponentsAlgorithm
impl RefUnwindSafe for ConnectedComponentsAlgorithm
impl Send for ConnectedComponentsAlgorithm
impl Sync for ConnectedComponentsAlgorithm
impl Unpin for ConnectedComponentsAlgorithm
impl UnwindSafe for ConnectedComponentsAlgorithm
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more