pub struct IntegerRangePartition {
pub column: Option<String>,
pub end: Option<i64>,
pub interval: Option<i64>,
pub start: Option<i64>,
}Expand description
Integer range partitioning. see https://cloud.google.com/bigquery/docs/partitioned-tables#integer_range
This type is not used in any activity, and only used as part of another schema.
Fields§
§column: Option<String>Required. The partitioning column.
end: Option<i64>Required. The ending value for range partitioning (exclusive).
interval: Option<i64>Required. The interval of each range within the partition.
start: Option<i64>Required. The starting value for range partitioning (inclusive).
Trait Implementations§
Source§impl Clone for IntegerRangePartition
impl Clone for IntegerRangePartition
Source§fn clone(&self) -> IntegerRangePartition
fn clone(&self) -> IntegerRangePartition
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 IntegerRangePartition
impl Debug for IntegerRangePartition
Source§impl Default for IntegerRangePartition
impl Default for IntegerRangePartition
Source§fn default() -> IntegerRangePartition
fn default() -> IntegerRangePartition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegerRangePartition
impl<'de> Deserialize<'de> for IntegerRangePartition
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 IntegerRangePartition
impl Serialize for IntegerRangePartition
impl Part for IntegerRangePartition
Auto Trait Implementations§
impl Freeze for IntegerRangePartition
impl RefUnwindSafe for IntegerRangePartition
impl Send for IntegerRangePartition
impl Sync for IntegerRangePartition
impl Unpin for IntegerRangePartition
impl UnwindSafe for IntegerRangePartition
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