pub struct TableToReload {
pub schema_name: Option<String>,
pub table_name: Option<String>,
}Expand description
Provides the name of the schema and table to be reloaded.
Fields§
§schema_name: Option<String>The schema name of the table to be reloaded.
table_name: Option<String>The table name of the table to be reloaded.
Trait Implementations§
Source§impl Clone for TableToReload
impl Clone for TableToReload
Source§fn clone(&self) -> TableToReload
fn clone(&self) -> TableToReload
Returns a duplicate 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 TableToReload
impl Debug for TableToReload
Source§impl Default for TableToReload
impl Default for TableToReload
Source§fn default() -> TableToReload
fn default() -> TableToReload
Returns the “default value” for a type. Read more
Source§impl PartialEq for TableToReload
impl PartialEq for TableToReload
Source§impl Serialize for TableToReload
impl Serialize for TableToReload
impl StructuralPartialEq for TableToReload
Auto Trait Implementations§
impl Freeze for TableToReload
impl RefUnwindSafe for TableToReload
impl Send for TableToReload
impl Sync for TableToReload
impl Unpin for TableToReload
impl UnwindSafe for TableToReload
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