pub enum StateRelation {
Extends,
Overrides,
}Expand description
Enumeration type for classificatoin of relations
Instances of this enum describe the relation between two states.
Variants§
Extends
The issue extends another state
All conditions are inherited. If both the extending and the extended state are enabled for an issue, the extending state is chosen.
Overrides
The issue overrides another state
If both the overriding and the overridden state are enabled for an issue, the overriding state is chosen. However, no conditions are inherited from the overridden state.
Trait Implementations§
Source§impl Clone for StateRelation
impl Clone for StateRelation
Source§fn clone(&self) -> StateRelation
fn clone(&self) -> StateRelation
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 StateRelation
impl Debug for StateRelation
Source§impl PartialEq for StateRelation
impl PartialEq for StateRelation
impl Eq for StateRelation
impl StructuralPartialEq for StateRelation
Auto Trait Implementations§
impl Freeze for StateRelation
impl RefUnwindSafe for StateRelation
impl Send for StateRelation
impl Sync for StateRelation
impl Unpin for StateRelation
impl UnwindSafe for StateRelation
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