pub enum GoalStatus {
Active,
Paused,
Completed,
Cleared,
}Expand description
Status of a long-horizon goal.
Transitions form a directed acyclic graph where Completed and Cleared
are terminal states. /goal create is NOT a transition — it inserts a new row.
Active ──► Paused ──► Active
│ │
▼ ▼
Completed Cleared
Active ──► Completed
Active ──► ClearedVariants§
Active
Goal is being actively tracked and injected into context.
Paused
Goal is paused — not injected into context, resumable.
Completed
Goal was marked as achieved. Terminal state.
Cleared
Goal was dismissed without completion. Terminal state.
Implementations§
Source§impl GoalStatus
impl GoalStatus
Sourcepub fn can_transition_to(self, to: Self) -> bool
pub fn can_transition_to(self, to: Self) -> bool
Return whether self → to is a valid FSM transition.
§Examples
use zeph_core::goal::GoalStatus;
assert!(GoalStatus::Active.can_transition_to(GoalStatus::Paused));
assert!(!GoalStatus::Completed.can_transition_to(GoalStatus::Active));Sourcepub fn is_terminal(self) -> bool
pub fn is_terminal(self) -> bool
Return true if this status accepts no further transitions.
§Examples
use zeph_core::goal::GoalStatus;
assert!(GoalStatus::Completed.is_terminal());
assert!(!GoalStatus::Active.is_terminal());Sourcepub fn badge_symbol(self) -> &'static str
pub fn badge_symbol(self) -> &'static str
Short ASCII symbol used in TUI status badge.
Trait Implementations§
Source§impl Clone for GoalStatus
impl Clone for GoalStatus
Source§fn clone(&self) -> GoalStatus
fn clone(&self) -> GoalStatus
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 GoalStatus
impl Debug for GoalStatus
Source§impl<'de> Deserialize<'de> for GoalStatus
impl<'de> Deserialize<'de> for GoalStatus
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
Source§impl Display for GoalStatus
impl Display for GoalStatus
Source§impl PartialEq for GoalStatus
impl PartialEq for GoalStatus
Source§fn eq(&self, other: &GoalStatus) -> bool
fn eq(&self, other: &GoalStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GoalStatus
impl Serialize for GoalStatus
impl Copy for GoalStatus
impl Eq for GoalStatus
impl StructuralPartialEq for GoalStatus
Auto Trait Implementations§
impl Freeze for GoalStatus
impl RefUnwindSafe for GoalStatus
impl Send for GoalStatus
impl Sync for GoalStatus
impl Unpin for GoalStatus
impl UnsafeUnpin for GoalStatus
impl UnwindSafe for GoalStatus
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request