pub struct AgentAttention {
pub kind: String,
pub reason: String,
pub at: DateTime<Utc>,
}Expand description
Agent attention state set via --attention flag, analogous to botmux agentAttention.
Fields§
§kind: String§reason: String§at: DateTime<Utc>Trait Implementations§
Source§impl Clone for AgentAttention
impl Clone for AgentAttention
Source§fn clone(&self) -> AgentAttention
fn clone(&self) -> AgentAttention
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 AgentAttention
impl Debug for AgentAttention
Source§impl<'de> Deserialize<'de> for AgentAttention
impl<'de> Deserialize<'de> for AgentAttention
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 AgentAttention
Source§impl PartialEq for AgentAttention
impl PartialEq for AgentAttention
Source§fn eq(&self, other: &AgentAttention) -> bool
fn eq(&self, other: &AgentAttention) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentAttention
impl Serialize for AgentAttention
impl StructuralPartialEq for AgentAttention
Auto Trait Implementations§
impl Freeze for AgentAttention
impl RefUnwindSafe for AgentAttention
impl Send for AgentAttention
impl Sync for AgentAttention
impl Unpin for AgentAttention
impl UnsafeUnpin for AgentAttention
impl UnwindSafe for AgentAttention
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