pub struct CreateVirtualTableStatement {
pub if_not_exists: bool,
pub name: QualifiedName,
pub module: String,
pub args: Vec<String>,
}Expand description
A CREATE VIRTUAL TABLE statement.
Fields§
§if_not_exists: boolIF NOT EXISTS flag.
name: QualifiedNameTable name.
module: StringModule name (e.g. fts5, rtree).
args: Vec<String>Module arguments (opaque strings).
Trait Implementations§
Source§impl Clone for CreateVirtualTableStatement
impl Clone for CreateVirtualTableStatement
Source§fn clone(&self) -> CreateVirtualTableStatement
fn clone(&self) -> CreateVirtualTableStatement
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 moreSource§impl Debug for CreateVirtualTableStatement
impl Debug for CreateVirtualTableStatement
impl Eq for CreateVirtualTableStatement
impl StructuralPartialEq for CreateVirtualTableStatement
Auto Trait Implementations§
impl Freeze for CreateVirtualTableStatement
impl RefUnwindSafe for CreateVirtualTableStatement
impl Send for CreateVirtualTableStatement
impl Sync for CreateVirtualTableStatement
impl Unpin for CreateVirtualTableStatement
impl UnsafeUnpin for CreateVirtualTableStatement
impl UnwindSafe for CreateVirtualTableStatement
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