pub struct TimeUnitPartition {
pub column: Option<String>,
pub partitioning_time_granularity: Option<String>,
}Expand description
Time unit column partitioning. see https://cloud.google.com/bigquery/docs/partitioned-tables#date_timestamp_partitioned_tables
This type is not used in any activity, and only used as part of another schema.
Fields§
§column: Option<String>Required. The partitioning column.
partitioning_time_granularity: Option<String>Optional. Partition granularity.
Trait Implementations§
Source§impl Clone for TimeUnitPartition
impl Clone for TimeUnitPartition
Source§fn clone(&self) -> TimeUnitPartition
fn clone(&self) -> TimeUnitPartition
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 TimeUnitPartition
impl Debug for TimeUnitPartition
Source§impl Default for TimeUnitPartition
impl Default for TimeUnitPartition
Source§fn default() -> TimeUnitPartition
fn default() -> TimeUnitPartition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeUnitPartition
impl<'de> Deserialize<'de> for TimeUnitPartition
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 TimeUnitPartition
impl Serialize for TimeUnitPartition
impl Part for TimeUnitPartition
Auto Trait Implementations§
impl Freeze for TimeUnitPartition
impl RefUnwindSafe for TimeUnitPartition
impl Send for TimeUnitPartition
impl Sync for TimeUnitPartition
impl Unpin for TimeUnitPartition
impl UnwindSafe for TimeUnitPartition
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