pub enum SessionOutcome {
Open,
Success,
Failure,
Aborted,
}Expand description
Outcome states for a session.
Variants§
Open
Still in progress. The session has been opened but not closed.
Success
The session completed and the agent considers the goal achieved.
Failure
The session completed but the goal was not achieved.
Aborted
The session was aborted (user closed the window mid-job and didn’t resume, agent self-terminated, etc.).
Trait Implementations§
Source§impl Clone for SessionOutcome
impl Clone for SessionOutcome
Source§fn clone(&self) -> SessionOutcome
fn clone(&self) -> SessionOutcome
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 moreimpl Copy for SessionOutcome
Source§impl Debug for SessionOutcome
impl Debug for SessionOutcome
Source§impl<'de> Deserialize<'de> for SessionOutcome
impl<'de> Deserialize<'de> for SessionOutcome
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 Eq for SessionOutcome
Source§impl Hash for SessionOutcome
impl Hash for SessionOutcome
Source§impl PartialEq for SessionOutcome
impl PartialEq for SessionOutcome
Source§fn eq(&self, other: &SessionOutcome) -> bool
fn eq(&self, other: &SessionOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionOutcome
impl Serialize for SessionOutcome
impl StructuralPartialEq for SessionOutcome
Auto Trait Implementations§
impl Freeze for SessionOutcome
impl RefUnwindSafe for SessionOutcome
impl Send for SessionOutcome
impl Sync for SessionOutcome
impl Unpin for SessionOutcome
impl UnsafeUnpin for SessionOutcome
impl UnwindSafe for SessionOutcome
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