sdl-parser 0.21.2

The SDL parser is a Rust tool designed for parsing Scenario Defined Language files.
Documentation
1
2
3
4
5
use anyhow::Result;

pub trait Connection<T> {
    fn validate_connections(&self, potential_connections: &Option<Vec<String>>) -> Result<()>;
}