pub enum PartitionValues {
In(Vec<Expr>),
FromTo(Vec<Expr>, Vec<Expr>),
LessThan(Vec<Expr>),
With(u32, u32),
}Variants§
Trait Implementations§
Source§impl Clone for PartitionValues
impl Clone for PartitionValues
Source§fn clone(&self) -> PartitionValues
fn clone(&self) -> PartitionValues
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 moreAuto Trait Implementations§
impl Freeze for PartitionValues
impl RefUnwindSafe for PartitionValues
impl !Send for PartitionValues
impl !Sync for PartitionValues
impl Unpin for PartitionValues
impl UnsafeUnpin for PartitionValues
impl UnwindSafe for PartitionValues
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