pub enum AgentActivityType {
Thought,
Action,
Response,
Elicitation,
Error,
Prompt,
Unknown,
}Expand description
The type of an agent activity.
Variants§
Thought
Action
Response
Elicitation
Error
Prompt
Unknown
Catch-all for unknown/new variants added by Linear.
Trait Implementations§
Source§impl Clone for AgentActivityType
impl Clone for AgentActivityType
Source§fn clone(&self) -> AgentActivityType
fn clone(&self) -> AgentActivityType
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 AgentActivityType
impl Debug for AgentActivityType
Source§impl<'de> Deserialize<'de> for AgentActivityType
impl<'de> Deserialize<'de> for AgentActivityType
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 AgentActivityType
impl PartialEq for AgentActivityType
Source§impl Serialize for AgentActivityType
impl Serialize for AgentActivityType
impl Eq for AgentActivityType
impl StructuralPartialEq for AgentActivityType
Auto Trait Implementations§
impl Freeze for AgentActivityType
impl RefUnwindSafe for AgentActivityType
impl Send for AgentActivityType
impl Sync for AgentActivityType
impl Unpin for AgentActivityType
impl UnwindSafe for AgentActivityType
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