pub struct DataCatalogDatabaseStateChange {
pub database_name: String,
pub type_of_change: String,
pub changed_tables: Vec<String>,
}Fields§
§database_name: String§type_of_change: String§changed_tables: Vec<String>Trait Implementations§
Source§impl Clone for DataCatalogDatabaseStateChange
impl Clone for DataCatalogDatabaseStateChange
Source§fn clone(&self) -> DataCatalogDatabaseStateChange
fn clone(&self) -> DataCatalogDatabaseStateChange
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 Default for DataCatalogDatabaseStateChange
impl Default for DataCatalogDatabaseStateChange
Source§fn default() -> DataCatalogDatabaseStateChange
fn default() -> DataCatalogDatabaseStateChange
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataCatalogDatabaseStateChange
impl<'de> Deserialize<'de> for DataCatalogDatabaseStateChange
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DataCatalogDatabaseStateChange
impl PartialEq for DataCatalogDatabaseStateChange
Source§fn eq(&self, other: &DataCatalogDatabaseStateChange) -> bool
fn eq(&self, other: &DataCatalogDatabaseStateChange) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DataCatalogDatabaseStateChange
impl StructuralPartialEq for DataCatalogDatabaseStateChange
Auto Trait Implementations§
impl Freeze for DataCatalogDatabaseStateChange
impl RefUnwindSafe for DataCatalogDatabaseStateChange
impl Send for DataCatalogDatabaseStateChange
impl Sync for DataCatalogDatabaseStateChange
impl Unpin for DataCatalogDatabaseStateChange
impl UnwindSafe for DataCatalogDatabaseStateChange
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