pub enum RuleValuesByType {
DiscreteValues(Vec<DiscreteValue>),
Ranges(Vec<Range>),
}Expand description
Represents the rule values the RuleRegistry can contain by their Discrete or Range type.
Variants§
Auto Trait Implementations§
impl Freeze for RuleValuesByType
impl RefUnwindSafe for RuleValuesByType
impl Send for RuleValuesByType
impl Sync for RuleValuesByType
impl Unpin for RuleValuesByType
impl UnwindSafe for RuleValuesByType
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