| 182 | |
| 183 | #[derive(Debug)] |
| 184 | pub struct In { |
| 185 | pub not: bool, |
| 186 | pub expr: Option<syn::Expr>, |
| 187 | pub code: Option<String>, |
| 188 | pub message: Option<String>, |
| 189 | } |
| 190 | |
| 191 | impl In { |
| 192 | pub fn new(not: bool) -> Self { |
no outgoing calls
no test coverage detected