pub struct Statement {
pub id: String,
/* private fields */
}
Fields§
§id: String
Trait Implementations§
Source§impl Statement for Statement
impl Statement for Statement
Source§fn execute(&mut self, args: Vec<Argument>, callback: BoxedCallback<ExecResult>)
fn execute(&mut self, args: Vec<Argument>, callback: BoxedCallback<ExecResult>)
Executes a query that doesn’t return rows, such
as an INSERT or UPDATE.
impl Send for Statement
Auto Trait Implementations§
impl Freeze for Statement
impl RefUnwindSafe for Statement
impl !Sync for Statement
impl Unpin for Statement
impl UnwindSafe for Statement
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