pub struct PartitionOfSpec {
pub parent_name: String,
pub bounds: PartitionOfBoundsAst,
}Expand description
v7.37.6-B — PARTITION OF <parent> <bounds> child suffix.
Bounds is either a half-open range (FOR VALUES FROM (a) TO (b))
or the catch-all DEFAULT partition.
Fields§
§parent_name: String§bounds: PartitionOfBoundsAstTrait Implementations§
Source§impl Clone for PartitionOfSpec
impl Clone for PartitionOfSpec
Source§fn clone(&self) -> PartitionOfSpec
fn clone(&self) -> PartitionOfSpec
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PartitionOfSpec
impl Debug for PartitionOfSpec
Source§impl PartialEq for PartitionOfSpec
impl PartialEq for PartitionOfSpec
Source§fn eq(&self, other: &PartitionOfSpec) -> bool
fn eq(&self, other: &PartitionOfSpec) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PartitionOfSpec
Auto Trait Implementations§
impl Freeze for PartitionOfSpec
impl RefUnwindSafe for PartitionOfSpec
impl Send for PartitionOfSpec
impl Sync for PartitionOfSpec
impl Unpin for PartitionOfSpec
impl UnsafeUnpin for PartitionOfSpec
impl UnwindSafe for PartitionOfSpec
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