pub struct SqliteBatchStatement {
pub sql: String,
pub params: Option<Vec<BindParam>>,
}Fields§
§sql: String§params: Option<Vec<BindParam>>Trait Implementations§
Source§impl Clone for SqliteBatchStatement
impl Clone for SqliteBatchStatement
Source§fn clone(&self) -> SqliteBatchStatement
fn clone(&self) -> SqliteBatchStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SqliteBatchStatement
impl RefUnwindSafe for SqliteBatchStatement
impl Send for SqliteBatchStatement
impl Sync for SqliteBatchStatement
impl Unpin for SqliteBatchStatement
impl UnsafeUnpin for SqliteBatchStatement
impl UnwindSafe for SqliteBatchStatement
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