pub struct GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec {
pub base_table: Option<String>,
pub sql_query: Option<String>,
pub view_type: Option<String>,
}Expand description
Specification that applies to database view.
This type is not used in any activity, and only used as part of another schema.
Fields§
§base_table: Option<String>Name of a singular table this view reflects one to one.
sql_query: Option<String>SQL query used to generate this view.
view_type: Option<String>Type of this view.
Trait Implementations§
Source§impl Clone for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
impl Clone for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
Source§fn clone(&self) -> GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
fn clone(&self) -> GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
impl Default for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
Source§fn default() -> GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
fn default() -> GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
impl<'de> Deserialize<'de> for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
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
impl Part for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
Auto Trait Implementations§
impl Freeze for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
impl RefUnwindSafe for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
impl Send for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
impl Sync for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
impl Unpin for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
impl UnsafeUnpin for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
impl UnwindSafe for GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
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