Docs.rs
graphalgs-0.2.0
graphalgs 0.2.0
Permalink
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
starovoid
Dependencies
nalgebra ^0.33
normal
num-traits ^0.2
normal
petgraph ^0.6.5
normal
rand ^0.8
normal
criterion ^0.5
dev
Versions
91.23%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
EdgeCount
graphalgs
0.2.0
Edge
Count
Required Methods
number_of_edges
Implementations on Foreign Types
&'a Csr<N, E, Ty>
&'a Graph<N, E, Ty, Ix>
&'a GraphMap<N, E, Ty>
&'a MatrixGraph<N, E, Ty>
&'a StableGraph<N, E, Ty, Ix>
Csr<N, E, Ty>
Graph<N, E, Ty, Ix>
GraphMap<N, E, Ty>
MatrixGraph<N, E, Ty>
StableGraph<N, E, Ty, Ix>
Implementors
In graphalgs::
traits
graphalgs
::
traits
Trait
Edge
Count
Copy item path
Source
pub trait EdgeCount { // Required method fn
number_of_edges
(self) ->
usize
; }
Required Methods
§
Source
fn
number_of_edges
(self) ->
usize
Implementations on Foreign Types
§
Source
§
impl<'a, N: 'a +
NodeTrait
, E: 'a, Ty:
EdgeType
>
EdgeCount
for &'a
GraphMap
<N, E, Ty>
Source
§
fn
number_of_edges
(self) ->
usize
Source
§
impl<'a, N: 'a, E: 'a, Ty:
EdgeType
>
EdgeCount
for &'a
Csr
<N, E, Ty>
Source
§
fn
number_of_edges
(self) ->
usize
Source
§
impl<'a, N: 'a, E: 'a, Ty:
EdgeType
>
EdgeCount
for &'a
MatrixGraph
<N, E, Ty>
Source
§
fn
number_of_edges
(self) ->
usize
Source
§
impl<'a, N: 'a, E: 'a, Ty:
EdgeType
, Ix:
IndexType
>
EdgeCount
for &'a
StableGraph
<N, E, Ty, Ix>
Source
§
fn
number_of_edges
(self) ->
usize
Source
§
impl<'a, N: 'a, E: 'a, Ty:
EdgeType
, Ix:
IndexType
>
EdgeCount
for &'a
Graph
<N, E, Ty, Ix>
Source
§
fn
number_of_edges
(self) ->
usize
Source
§
impl<N, E, Ty:
EdgeType
>
EdgeCount
for
Csr
<N, E, Ty>
Source
§
fn
number_of_edges
(self) ->
usize
Source
§
impl<N, E, Ty:
EdgeType
>
EdgeCount
for
MatrixGraph
<N, E, Ty>
Source
§
fn
number_of_edges
(self) ->
usize
Source
§
impl<N, E, Ty:
EdgeType
, Ix:
IndexType
>
EdgeCount
for
StableGraph
<N, E, Ty, Ix>
Source
§
fn
number_of_edges
(self) ->
usize
Source
§
impl<N, E, Ty:
EdgeType
, Ix:
IndexType
>
EdgeCount
for
Graph
<N, E, Ty, Ix>
Source
§
fn
number_of_edges
(self) ->
usize
Source
§
impl<N:
NodeTrait
, E, Ty:
EdgeType
>
EdgeCount
for
GraphMap
<N, E, Ty>
Source
§
fn
number_of_edges
(self) ->
usize
Implementors
§