pub enum SQLiteCommand {
Connect,
Query,
Prepare,
Execute,
Close,
}Expand description
SQLite command types for the simplified protocol
Variants§
Trait Implementations§
Source§impl Clone for SQLiteCommand
impl Clone for SQLiteCommand
Source§fn clone(&self) -> SQLiteCommand
fn clone(&self) -> SQLiteCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SQLiteCommand
impl Debug for SQLiteCommand
Source§impl PartialEq for SQLiteCommand
impl PartialEq for SQLiteCommand
impl StructuralPartialEq for SQLiteCommand
Auto Trait Implementations§
impl Freeze for SQLiteCommand
impl RefUnwindSafe for SQLiteCommand
impl Send for SQLiteCommand
impl Sync for SQLiteCommand
impl Unpin for SQLiteCommand
impl UnwindSafe for SQLiteCommand
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