pub struct BigQueryPartitioning {
pub ingestion_time_partition: Option<IngestionTimePartition>,
pub integer_range_partition: Option<IntegerRangePartition>,
pub require_partition_filter: Option<bool>,
pub time_unit_partition: Option<TimeUnitPartition>,
}Expand description
BigQuery partitioning configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§ingestion_time_partition: Option<IngestionTimePartition>Ingestion time partitioning.
integer_range_partition: Option<IntegerRangePartition>Integer range partitioning.
require_partition_filter: Option<bool>Optional. If true, queries over the table require a partition filter.
time_unit_partition: Option<TimeUnitPartition>Time unit column partitioning.
Trait Implementations§
Source§impl Clone for BigQueryPartitioning
impl Clone for BigQueryPartitioning
Source§fn clone(&self) -> BigQueryPartitioning
fn clone(&self) -> BigQueryPartitioning
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 BigQueryPartitioning
impl Debug for BigQueryPartitioning
Source§impl Default for BigQueryPartitioning
impl Default for BigQueryPartitioning
Source§fn default() -> BigQueryPartitioning
fn default() -> BigQueryPartitioning
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BigQueryPartitioning
impl<'de> Deserialize<'de> for BigQueryPartitioning
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 BigQueryPartitioning
impl Serialize for BigQueryPartitioning
impl Part for BigQueryPartitioning
Auto Trait Implementations§
impl Freeze for BigQueryPartitioning
impl RefUnwindSafe for BigQueryPartitioning
impl Send for BigQueryPartitioning
impl Sync for BigQueryPartitioning
impl Unpin for BigQueryPartitioning
impl UnwindSafe for BigQueryPartitioning
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