pub struct QueryTableNamesInput { /* private fields */ }
Expand description
Represents the input for querying table names.
Implementations§
Source§impl QueryTableNamesInput
impl QueryTableNamesInput
Sourcepub fn new(
schema_name: SchemaName,
included_tables: Vec<impl Into<String>>,
excluded_tables: Vec<impl Into<String>>,
) -> Self
pub fn new( schema_name: SchemaName, included_tables: Vec<impl Into<String>>, excluded_tables: Vec<impl Into<String>>, ) -> Self
Creates a new QueryTableNamesInput
instance.
pub fn schema_name(&self) -> &SchemaName
pub fn included_tables(&self) -> Vec<String>
pub fn excluded_tables(&self) -> Vec<String>
Auto Trait Implementations§
impl Freeze for QueryTableNamesInput
impl RefUnwindSafe for QueryTableNamesInput
impl Send for QueryTableNamesInput
impl Sync for QueryTableNamesInput
impl Unpin for QueryTableNamesInput
impl UnwindSafe for QueryTableNamesInput
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