pub enum AnalyzeAlgorithm {
Show 33 variants
MinimumSpanningTree,
MaximumSpanningTree,
MinimumKSpanningTree,
TopologicalSort,
IsDag,
FindCycles,
DagLongestPath,
DagLongestPathWeighted,
NodeColoring,
EdgeColoring,
ChromaticNumber,
K1Coloring,
MaxWeightMatching,
MaxCardinalityMatching,
MaxBipartiteMatching,
EulerCircuit,
EulerPath,
HasEulerCircuit,
HasEulerPath,
IsPlanar,
ArticulationPoints,
Bridges,
TriangleCount,
Conductance,
Modularity,
Transitivity,
TriadCensus,
DyadCensus,
CountAutomorphisms,
Node2Vec,
GraphSage,
FastRandomProjection,
HashGnn,
}Expand description
Typed by= values for AnalyzeAlgorithm.
Variants§
MinimumSpanningTree
minimum_spanning_tree.
MaximumSpanningTree
maximum_spanning_tree.
MinimumKSpanningTree
minimum_k_spanning_tree.
TopologicalSort
topological_sort.
IsDag
is_dag.
FindCycles
find_cycles.
DagLongestPath
dag_longest_path.
DagLongestPathWeighted
dag_longest_path_weighted.
NodeColoring
node_coloring.
EdgeColoring
edge_coloring.
ChromaticNumber
chromatic_number.
K1Coloring
k1_coloring.
MaxWeightMatching
max_weight_matching.
MaxCardinalityMatching
max_cardinality_matching.
MaxBipartiteMatching
max_bipartite_matching.
EulerCircuit
euler_circuit.
EulerPath
euler_path.
HasEulerCircuit
has_euler_circuit.
HasEulerPath
has_euler_path.
IsPlanar
is_planar.
ArticulationPoints
articulation_points.
Bridges
bridges.
TriangleCount
triangle_count.
Conductance
conductance.
Modularity
modularity.
Transitivity
transitivity.
TriadCensus
triad_census.
DyadCensus
dyad_census.
CountAutomorphisms
count_automorphisms.
Node2Vec
node2vec.
GraphSage
graphsage.
FastRandomProjection
fast_random_projection.
HashGnn
hashgnn.
Implementations§
Trait Implementations§
Source§impl Clone for AnalyzeAlgorithm
impl Clone for AnalyzeAlgorithm
Source§fn clone(&self) -> AnalyzeAlgorithm
fn clone(&self) -> AnalyzeAlgorithm
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AnalyzeAlgorithm
Source§impl Debug for AnalyzeAlgorithm
impl Debug for AnalyzeAlgorithm
Source§impl Default for AnalyzeAlgorithm
impl Default for AnalyzeAlgorithm
Source§impl Display for AnalyzeAlgorithm
impl Display for AnalyzeAlgorithm
impl Eq for AnalyzeAlgorithm
Source§impl FromStr for AnalyzeAlgorithm
impl FromStr for AnalyzeAlgorithm
Source§impl Hash for AnalyzeAlgorithm
impl Hash for AnalyzeAlgorithm
Source§impl PartialEq for AnalyzeAlgorithm
impl PartialEq for AnalyzeAlgorithm
impl StructuralPartialEq for AnalyzeAlgorithm
Auto Trait Implementations§
impl Freeze for AnalyzeAlgorithm
impl RefUnwindSafe for AnalyzeAlgorithm
impl Send for AnalyzeAlgorithm
impl Sync for AnalyzeAlgorithm
impl Unpin for AnalyzeAlgorithm
impl UnsafeUnpin for AnalyzeAlgorithm
impl UnwindSafe for AnalyzeAlgorithm
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.