Skip to main content

bctx_conductor/graph/
edge.rs

1#[derive(Debug, Clone)]
2pub struct GraphEdge {
3    pub from: usize,
4    pub to: usize,
5    pub kind: EdgeKind,
6    pub weight: f32,
7}
8
9#[derive(Debug, Clone)]
10pub enum EdgeKind {
11    Produces,
12    Consumes,
13    References,
14    Supersedes,
15}