pub struct ListPartitionDef {
pub name: String,
pub values: Vec<String>,
pub tablespace: Option<String>,
}Expand description
A list partition definition.
Fields§
§name: StringPartition name.
values: Vec<String>Values in this partition.
tablespace: Option<String>Tablespace (optional).
Implementations§
Trait Implementations§
Source§impl Clone for ListPartitionDef
impl Clone for ListPartitionDef
Source§fn clone(&self) -> ListPartitionDef
fn clone(&self) -> ListPartitionDef
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 ListPartitionDef
impl Debug for ListPartitionDef
Source§impl<'de> Deserialize<'de> for ListPartitionDef
impl<'de> Deserialize<'de> for ListPartitionDef
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 PartialEq for ListPartitionDef
impl PartialEq for ListPartitionDef
Source§impl Serialize for ListPartitionDef
impl Serialize for ListPartitionDef
impl Eq for ListPartitionDef
impl StructuralPartialEq for ListPartitionDef
Auto Trait Implementations§
impl Freeze for ListPartitionDef
impl RefUnwindSafe for ListPartitionDef
impl Send for ListPartitionDef
impl Sync for ListPartitionDef
impl Unpin for ListPartitionDef
impl UnwindSafe for ListPartitionDef
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