| 218 | /// Execute a prepared statement. |
| 219 | #[derive(Debug, Clone, PartialEq, PartialOrd, Eq, Hash)] |
| 220 | pub struct Execute { |
| 221 | /// The name of the prepared statement to execute |
| 222 | pub name: String, |
| 223 | /// The execute parameters |
| 224 | pub parameters: Vec<Expr>, |
| 225 | } |
| 226 | |
| 227 | /// Deallocate a prepared statement. |
| 228 | #[derive(Debug, Clone, PartialEq, PartialOrd, Eq, Hash)] |
no outgoing calls
no test coverage detected
searching dependent graphs…