pub enum DesignSpace {
Ranges(HashMap<Tag, RangeSet<Fixed>>),
All,
}Expand description
Stores a collection of ranges across zero or more axes.
Variants§
Trait Implementations§
Source§impl Clone for DesignSpace
impl Clone for DesignSpace
Source§fn clone(&self) -> DesignSpace
fn clone(&self) -> DesignSpace
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 DesignSpace
impl Debug for DesignSpace
Source§impl Default for DesignSpace
impl Default for DesignSpace
Source§impl PartialEq for DesignSpace
impl PartialEq for DesignSpace
Source§fn eq(&self, other: &DesignSpace) -> bool
fn eq(&self, other: &DesignSpace) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DesignSpace
Auto Trait Implementations§
impl Freeze for DesignSpace
impl RefUnwindSafe for DesignSpace
impl Send for DesignSpace
impl Sync for DesignSpace
impl Unpin for DesignSpace
impl UnsafeUnpin for DesignSpace
impl UnwindSafe for DesignSpace
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