pub struct RangeConstraint {
pub property: String,
pub min: Option<LiteralValue>,
pub max: Option<LiteralValue>,
}Fields§
§property: String§min: Option<LiteralValue>§max: Option<LiteralValue>Trait Implementations§
Source§impl Clone for RangeConstraint
impl Clone for RangeConstraint
Source§fn clone(&self) -> RangeConstraint
fn clone(&self) -> RangeConstraint
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 RangeConstraint
impl RefUnwindSafe for RangeConstraint
impl Send for RangeConstraint
impl Sync for RangeConstraint
impl Unpin for RangeConstraint
impl UnsafeUnpin for RangeConstraint
impl UnwindSafe for RangeConstraint
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