pub enum GoalType {
Terminal,
Subgoal,
Milestone,
Invariant,
}Expand description
Type of goal.
Variants§
Terminal
End goal - ultimate objective
Subgoal
Decomposed from parent goal
Milestone
Progress checkpoint
Invariant
Constraint that must always hold
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GoalType
impl<'de> Deserialize<'de> for GoalType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for GoalType
impl Eq for GoalType
impl StructuralPartialEq for GoalType
Auto Trait Implementations§
impl Freeze for GoalType
impl RefUnwindSafe for GoalType
impl Send for GoalType
impl Sync for GoalType
impl Unpin for GoalType
impl UnwindSafe for GoalType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.