pub struct CustomizationRule {
pub bigquery_clustering: Option<BigQueryClustering>,
pub bigquery_partitioning: Option<BigQueryPartitioning>,
}Expand description
A customization rule to apply to a set of objects.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bigquery_clustering: Option<BigQueryClustering>BigQuery clustering rule.
bigquery_partitioning: Option<BigQueryPartitioning>BigQuery partitioning rule.
Trait Implementations§
Source§impl Clone for CustomizationRule
impl Clone for CustomizationRule
Source§fn clone(&self) -> CustomizationRule
fn clone(&self) -> CustomizationRule
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 CustomizationRule
impl Debug for CustomizationRule
Source§impl Default for CustomizationRule
impl Default for CustomizationRule
Source§fn default() -> CustomizationRule
fn default() -> CustomizationRule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomizationRule
impl<'de> Deserialize<'de> for CustomizationRule
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 CustomizationRule
impl Serialize for CustomizationRule
impl Part for CustomizationRule
Auto Trait Implementations§
impl Freeze for CustomizationRule
impl RefUnwindSafe for CustomizationRule
impl Send for CustomizationRule
impl Sync for CustomizationRule
impl Unpin for CustomizationRule
impl UnwindSafe for CustomizationRule
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