Struct sequelite::connection::RawQuery
source · pub struct RawQuery {
pub sql: String,
pub params: Vec<Box<dyn ToSql>>,
}Expand description
A raw query that can be executed on a database. This is used internally by sequelite. You should not need to use this.
Fields§
§sql: String§params: Vec<Box<dyn ToSql>>