| 9 | pub mod validator; |
| 10 | |
| 11 | pub trait FromDirective { |
| 12 | fn from_directive(directive: Directive) -> Result<Self, String> |
| 13 | where |
| 14 | Self: Sized; |
| 15 | } |
| 16 | |
| 17 | #[derive(Debug, Clone, Eq, PartialEq)] |
| 18 | pub struct Directive { |
nothing calls this directly
no outgoing calls
no test coverage detected