Struct google_datamigration1::api::ViewEntity
source · pub struct ViewEntity {
pub constraints: Option<Vec<ConstraintEntity>>,
pub custom_features: Option<HashMap<String, Value>>,
pub sql_code: Option<String>,
}
Expand description
View’s parent is a schema.
This type is not used in any activity, and only used as part of another schema.
Fields§
§constraints: Option<Vec<ConstraintEntity>>
View Constraints.
custom_features: Option<HashMap<String, Value>>
Custom engine specific features
sql_code: Option<String>
The SQL code which creates the view.
Trait Implementations§
source§impl Clone for ViewEntity
impl Clone for ViewEntity
source§fn clone(&self) -> ViewEntity
fn clone(&self) -> ViewEntity
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 ViewEntity
impl Debug for ViewEntity
source§impl Default for ViewEntity
impl Default for ViewEntity
source§fn default() -> ViewEntity
fn default() -> ViewEntity
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ViewEntity
impl<'de> Deserialize<'de> for ViewEntity
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 Serialize for ViewEntity
impl Serialize for ViewEntity
impl Part for ViewEntity
Auto Trait Implementations§
impl RefUnwindSafe for ViewEntity
impl Send for ViewEntity
impl Sync for ViewEntity
impl Unpin for ViewEntity
impl UnwindSafe for ViewEntity
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