hyperlit-model 0.1.0

A software documentation tool documentation embedded in source files - model crate
Documentation
1
2
3
4
5
6
7
use crate::segment::Segment;

#[derive(Debug)]
pub enum DirectiveEvaluation<'a> {
    Segments { segments: Vec<&'a Segment> },
    NoDirective,
}