pub struct DiscreteValueRuleState {
pub rule_id: String,
pub state: DiscreteValue,
}Expand description
Holds a Rule ID and the current state of that Rule.
It is usually used as a return type for super::Intersection::discrete_value_rule_states.
Fields§
§rule_id: StringRule ID.
state: DiscreteValueCurrent state of the rule.
Auto Trait Implementations§
impl Freeze for DiscreteValueRuleState
impl RefUnwindSafe for DiscreteValueRuleState
impl Send for DiscreteValueRuleState
impl Sync for DiscreteValueRuleState
impl Unpin for DiscreteValueRuleState
impl UnwindSafe for DiscreteValueRuleState
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