Returns the AST associated with this prepared statement, if the prepared statement was not the empty query.
(&self)
| 960 | /// Returns the AST associated with this prepared statement, |
| 961 | /// if the prepared statement was not the empty query. |
| 962 | pub fn stmt(&self) -> Option<&Statement<Raw>> { |
| 963 | self.stmt.as_ref() |
| 964 | } |
| 965 | |
| 966 | /// Returns the description of the prepared statement. |
| 967 | pub fn desc(&self) -> &StatementDesc { |
no test coverage detected