pub enum PartitionBoundExpr<'a> {
Expr(Expression<'a>),
MinValue(Span),
MaxValue(Span),
}Expand description
A single value in a partition bound specification: an expression, MINVALUE, or MAXVALUE
Variants§
Trait Implementations§
Source§impl<'a> Clone for PartitionBoundExpr<'a>
impl<'a> Clone for PartitionBoundExpr<'a>
Source§fn clone(&self) -> PartitionBoundExpr<'a>
fn clone(&self) -> PartitionBoundExpr<'a>
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<'a> Debug for PartitionBoundExpr<'a>
impl<'a> Debug for PartitionBoundExpr<'a>
Auto Trait Implementations§
impl<'a> Freeze for PartitionBoundExpr<'a>
impl<'a> RefUnwindSafe for PartitionBoundExpr<'a>
impl<'a> Send for PartitionBoundExpr<'a>
impl<'a> Sync for PartitionBoundExpr<'a>
impl<'a> Unpin for PartitionBoundExpr<'a>
impl<'a> UnsafeUnpin for PartitionBoundExpr<'a>
impl<'a> UnwindSafe for PartitionBoundExpr<'a>
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