pub enum AgentTaskStatus {
Open,
InProgress,
Blocked,
Complete,
Abandoned,
}Expand description
Lifecycle status for a local agent task assignment.
Variants§
Open
The task is delegated but no active reservation is known.
InProgress
An agent is actively working the task.
Blocked
Work is blocked on external input.
Complete
Work completed successfully.
Abandoned
Work was abandoned or superseded.
Trait Implementations§
Source§impl Clone for AgentTaskStatus
impl Clone for AgentTaskStatus
Source§fn clone(&self) -> AgentTaskStatus
fn clone(&self) -> AgentTaskStatus
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 AgentTaskStatus
impl Debug for AgentTaskStatus
Source§impl<'de> Deserialize<'de> for AgentTaskStatus
impl<'de> Deserialize<'de> for AgentTaskStatus
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 AgentTaskStatus
impl Display for AgentTaskStatus
impl Eq for AgentTaskStatus
Source§impl PartialEq for AgentTaskStatus
impl PartialEq for AgentTaskStatus
Source§fn eq(&self, other: &AgentTaskStatus) -> bool
fn eq(&self, other: &AgentTaskStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentTaskStatus
impl Serialize for AgentTaskStatus
impl StructuralPartialEq for AgentTaskStatus
Auto Trait Implementations§
impl Freeze for AgentTaskStatus
impl RefUnwindSafe for AgentTaskStatus
impl Send for AgentTaskStatus
impl Sync for AgentTaskStatus
impl Unpin for AgentTaskStatus
impl UnsafeUnpin for AgentTaskStatus
impl UnwindSafe for AgentTaskStatus
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