pub enum Stmt {
Select(Select),
Ignored(&'static str),
}Expand description
A statement, which is a select or one of the two things a client says before it asks for
anything.
Variants§
Select(Select)
Ignored(&'static str)
SET … and BEGIN/COMMIT/ROLLBACK: acknowledged and ignored. A read model has nothing
to set and nothing to roll back, and a driver that opens a transaction out of habit should
not be refused for it.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stmt
impl RefUnwindSafe for Stmt
impl Send for Stmt
impl Sync for Stmt
impl Unpin for Stmt
impl UnwindSafe for Stmt
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