pub enum ImportSelector {
All,
LimitTo(Vec<String>),
Except(Vec<String>),
}Expand description
The optional table-filter for IMPORT FOREIGN SCHEMA.
Variants§
All
Import all tables (no filter clause).
LimitTo(Vec<String>)
LIMIT TO (table, …) — import only the listed tables.
Except(Vec<String>)
EXCEPT (table, …) — import all tables except the listed ones.
Trait Implementations§
Source§impl Clone for ImportSelector
impl Clone for ImportSelector
Source§fn clone(&self) -> ImportSelector
fn clone(&self) -> ImportSelector
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 ImportSelector
impl Debug for ImportSelector
impl Eq for ImportSelector
Source§impl PartialEq for ImportSelector
impl PartialEq for ImportSelector
impl StructuralPartialEq for ImportSelector
Auto Trait Implementations§
impl Freeze for ImportSelector
impl RefUnwindSafe for ImportSelector
impl Send for ImportSelector
impl Sync for ImportSelector
impl Unpin for ImportSelector
impl UnsafeUnpin for ImportSelector
impl UnwindSafe for ImportSelector
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