pub enum AgentSessionStatus {
Pending,
Active,
Complete,
AwaitingInput,
Error,
Stale,
Unknown,
}Expand description
The status of an agent session.
Variants§
Pending
Active
Complete
AwaitingInput
Error
Stale
Unknown
Catch-all for unknown/new variants added by Linear.
Trait Implementations§
Source§impl Clone for AgentSessionStatus
impl Clone for AgentSessionStatus
Source§fn clone(&self) -> AgentSessionStatus
fn clone(&self) -> AgentSessionStatus
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 AgentSessionStatus
impl Debug for AgentSessionStatus
Source§impl<'de> Deserialize<'de> for AgentSessionStatus
impl<'de> Deserialize<'de> for AgentSessionStatus
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 PartialEq for AgentSessionStatus
impl PartialEq for AgentSessionStatus
Source§impl Serialize for AgentSessionStatus
impl Serialize for AgentSessionStatus
impl Eq for AgentSessionStatus
impl StructuralPartialEq for AgentSessionStatus
Auto Trait Implementations§
impl Freeze for AgentSessionStatus
impl RefUnwindSafe for AgentSessionStatus
impl Send for AgentSessionStatus
impl Sync for AgentSessionStatus
impl Unpin for AgentSessionStatus
impl UnwindSafe for AgentSessionStatus
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