pub enum PrmValueConstraint {
MinMax(i64, i64),
Enum(Vec<i64>),
Unconstrained,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PrmValueConstraint
impl Clone for PrmValueConstraint
Source§fn clone(&self) -> PrmValueConstraint
fn clone(&self) -> PrmValueConstraint
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 PrmValueConstraint
impl Debug for PrmValueConstraint
Source§impl PartialEq for PrmValueConstraint
impl PartialEq for PrmValueConstraint
impl Eq for PrmValueConstraint
impl StructuralPartialEq for PrmValueConstraint
Auto Trait Implementations§
impl Freeze for PrmValueConstraint
impl RefUnwindSafe for PrmValueConstraint
impl Send for PrmValueConstraint
impl Sync for PrmValueConstraint
impl Unpin for PrmValueConstraint
impl UnwindSafe for PrmValueConstraint
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