pub struct RangePartitioning {
pub field: Option<String>,
pub range: Option<RangePartitioningRange>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§field: Option<String>Required. The name of the column to partition the table on. It must be a top-level, INT64 column whose mode is NULLABLE or REQUIRED.
range: Option<RangePartitioningRange>[Experimental] Defines the ranges for range partitioning.
Trait Implementations§
Source§impl Clone for RangePartitioning
impl Clone for RangePartitioning
Source§fn clone(&self) -> RangePartitioning
fn clone(&self) -> RangePartitioning
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 RangePartitioning
impl Debug for RangePartitioning
Source§impl Default for RangePartitioning
impl Default for RangePartitioning
Source§fn default() -> RangePartitioning
fn default() -> RangePartitioning
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RangePartitioning
impl<'de> Deserialize<'de> for RangePartitioning
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 RangePartitioning
impl Serialize for RangePartitioning
impl Part for RangePartitioning
Auto Trait Implementations§
impl Freeze for RangePartitioning
impl RefUnwindSafe for RangePartitioning
impl Send for RangePartitioning
impl Sync for RangePartitioning
impl Unpin for RangePartitioning
impl UnwindSafe for RangePartitioning
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