pub enum InteractiveSessionState {
Active,
Paused,
Completed,
Aborted,
}Expand description
Session lifecycle states.
Variants§
Active
Session is active (agent running, human connected).
Paused
Session is paused (agent suspended, can be resumed).
Completed
Session completed successfully.
Aborted
Session was aborted by the human.
Trait Implementations§
Source§impl Clone for InteractiveSessionState
impl Clone for InteractiveSessionState
Source§fn clone(&self) -> InteractiveSessionState
fn clone(&self) -> InteractiveSessionState
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 InteractiveSessionState
impl Debug for InteractiveSessionState
Source§impl<'de> Deserialize<'de> for InteractiveSessionState
impl<'de> Deserialize<'de> for InteractiveSessionState
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 InteractiveSessionState
impl Display for InteractiveSessionState
Source§impl PartialEq for InteractiveSessionState
impl PartialEq for InteractiveSessionState
Source§impl Serialize for InteractiveSessionState
impl Serialize for InteractiveSessionState
impl Eq for InteractiveSessionState
impl StructuralPartialEq for InteractiveSessionState
Auto Trait Implementations§
impl Freeze for InteractiveSessionState
impl RefUnwindSafe for InteractiveSessionState
impl Send for InteractiveSessionState
impl Sync for InteractiveSessionState
impl Unpin for InteractiveSessionState
impl UnsafeUnpin for InteractiveSessionState
impl UnwindSafe for InteractiveSessionState
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§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<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> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.