pub struct SQLPreparedStatement {
pub sql: String,
pub parameters: Vec<SQLParameter>,
pub dialect: SQLDialect,
}Fields§
§sql: String§parameters: Vec<SQLParameter>§dialect: SQLDialectImplementations§
Auto Trait Implementations§
impl Freeze for SQLPreparedStatement
impl RefUnwindSafe for SQLPreparedStatement
impl Send for SQLPreparedStatement
impl Sync for SQLPreparedStatement
impl Unpin for SQLPreparedStatement
impl UnsafeUnpin for SQLPreparedStatement
impl UnwindSafe for SQLPreparedStatement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more