| 200 | /// Reset a configuration variable to its default |
| 201 | #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Hash)] |
| 202 | pub struct ResetVariable { |
| 203 | /// The variable name |
| 204 | pub variable: String, |
| 205 | } |
| 206 | /// Prepare a statement but do not execute it. Prepare statements can have 0 or more |
| 207 | /// `Expr::Placeholder` expressions that are filled in during execution |
| 208 | #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Hash)] |
no outgoing calls
no test coverage detected
searching dependent graphs…