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