muffy-validation 0.4.1

Document validation for Muffy
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::state::State;
use crate::attribute_set::AttributeSet;
use alloc::collections::BTreeSet;

pub struct VariantEvaluation {
    // (error count, conflict count, requirement count)
    pub score: (usize, usize, usize),
    pub attribute_set: &'static AttributeSet,
    pub misplaced_children: BTreeSet<&'static str>,
    pub state: State,
}