fluidattacks-blends-domain 0.6.0

Blends functional core: pure AST graph to syntax graph (no_std)
Documentation
1
2
3
4
5
6
7
8
9
//! Syntax edge: per-layer optional marks.

use crate::{Ast, Cfg};

#[derive(Clone, Copy, PartialEq, Eq, Debug, Default)]
pub struct SyntaxEdge {
    pub ast: Option<Ast>,
    pub cfg: Option<Cfg>,
}