pub struct CreateVirtualTable {
pub if_not_exists: bool,
pub tbl_name: QualifiedName,
pub module_name: Name,
pub args: Option<Vec<String>>,
}Expand description
CREATE VIRTUAL TABLE
Fields§
§if_not_exists: boolIF NOT EXISTS
tbl_name: QualifiedNametable name
module_name: Namemodule name
args: Option<Vec<String>>args
Trait Implementations§
Source§impl Clone for CreateVirtualTable
impl Clone for CreateVirtualTable
Source§fn clone(&self) -> CreateVirtualTable
fn clone(&self) -> CreateVirtualTable
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 CreateVirtualTable
impl Debug for CreateVirtualTable
impl Eq for CreateVirtualTable
Source§impl PartialEq for CreateVirtualTable
impl PartialEq for CreateVirtualTable
Source§fn eq(&self, other: &CreateVirtualTable) -> bool
fn eq(&self, other: &CreateVirtualTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateVirtualTable
Source§impl ToSqlString for CreateVirtualTable
impl ToSqlString for CreateVirtualTable
Source§fn to_sql_string<C: ToSqlContext>(&self, context: &C) -> String
fn to_sql_string<C: ToSqlContext>(&self, context: &C) -> String
Convert the given value to String
Auto Trait Implementations§
impl Freeze for CreateVirtualTable
impl RefUnwindSafe for CreateVirtualTable
impl Send for CreateVirtualTable
impl Sync for CreateVirtualTable
impl Unpin for CreateVirtualTable
impl UnsafeUnpin for CreateVirtualTable
impl UnwindSafe for CreateVirtualTable
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.