pub enum ActorPresenceStatus {
Active,
Abandoned,
Complete,
Merged,
}Expand description
Status of an agent session.
Variants§
Active
Agent is actively working.
Abandoned
Agent work was abandoned or interrupted.
Complete
Agent has finished work (snapshot taken) but not yet merged.
Merged
Agent’s thread has been merged into the base thread.
Trait Implementations§
Source§impl Clone for ActorPresenceStatus
impl Clone for ActorPresenceStatus
Source§fn clone(&self) -> ActorPresenceStatus
fn clone(&self) -> ActorPresenceStatus
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 ActorPresenceStatus
impl Debug for ActorPresenceStatus
Source§impl<'de> Deserialize<'de> for ActorPresenceStatus
impl<'de> Deserialize<'de> for ActorPresenceStatus
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 ActorPresenceStatus
impl Display for ActorPresenceStatus
impl Eq for ActorPresenceStatus
Source§impl PartialEq for ActorPresenceStatus
impl PartialEq for ActorPresenceStatus
Source§impl Serialize for ActorPresenceStatus
impl Serialize for ActorPresenceStatus
impl StructuralPartialEq for ActorPresenceStatus
Auto Trait Implementations§
impl Freeze for ActorPresenceStatus
impl RefUnwindSafe for ActorPresenceStatus
impl Send for ActorPresenceStatus
impl Sync for ActorPresenceStatus
impl Unpin for ActorPresenceStatus
impl UnsafeUnpin for ActorPresenceStatus
impl UnwindSafe for ActorPresenceStatus
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