ellie_standard_rules/
lib.rs

1/*
2    Copyright (c) 2020 Behemehal. See license file for details
3*/
4
5#[macro_use]
6extern crate lazy_static;
7pub mod rules;
8
9pub struct Rule<T, E> {
10    pub warning_id: u8,
11    pub worker: fn(T) -> E,
12}