#[non_exhaustive]pub struct TableToReloadBuilder { /* private fields */ }Expand description
A builder for TableToReload.
Implementations§
source§impl TableToReloadBuilder
impl TableToReloadBuilder
sourcepub fn schema_name(self, input: impl Into<String>) -> Self
pub fn schema_name(self, input: impl Into<String>) -> Self
The schema name of the table to be reloaded.
sourcepub fn set_schema_name(self, input: Option<String>) -> Self
pub fn set_schema_name(self, input: Option<String>) -> Self
The schema name of the table to be reloaded.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The table name of the table to be reloaded.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The table name of the table to be reloaded.
sourcepub fn build(self) -> TableToReload
pub fn build(self) -> TableToReload
Consumes the builder and constructs a TableToReload.
Trait Implementations§
source§impl Clone for TableToReloadBuilder
impl Clone for TableToReloadBuilder
source§fn clone(&self) -> TableToReloadBuilder
fn clone(&self) -> TableToReloadBuilder
Returns a copy of the value. Read more
1.0.0 · 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 TableToReloadBuilder
impl Debug for TableToReloadBuilder
source§impl Default for TableToReloadBuilder
impl Default for TableToReloadBuilder
source§fn default() -> TableToReloadBuilder
fn default() -> TableToReloadBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<TableToReloadBuilder> for TableToReloadBuilder
impl PartialEq<TableToReloadBuilder> for TableToReloadBuilder
source§fn eq(&self, other: &TableToReloadBuilder) -> bool
fn eq(&self, other: &TableToReloadBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.