pub struct AgentEntry {
pub vex_session_id: Uuid,
pub claude_session_id: String,
pub claude_pid: u32,
pub cwd: PathBuf,
pub detected_at: DateTime<Utc>,
pub needs_intervention: bool,
}Fields§
§vex_session_id: Uuid§claude_session_id: String§claude_pid: u32§cwd: PathBuf§detected_at: DateTime<Utc>§needs_intervention: boolTrait Implementations§
Source§impl Clone for AgentEntry
impl Clone for AgentEntry
Source§fn clone(&self) -> AgentEntry
fn clone(&self) -> AgentEntry
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 AgentEntry
impl Debug for AgentEntry
Source§impl<'de> Deserialize<'de> for AgentEntry
impl<'de> Deserialize<'de> for AgentEntry
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 AgentEntry
impl PartialEq for AgentEntry
Source§impl Serialize for AgentEntry
impl Serialize for AgentEntry
impl Eq for AgentEntry
impl StructuralPartialEq for AgentEntry
Auto Trait Implementations§
impl Freeze for AgentEntry
impl RefUnwindSafe for AgentEntry
impl Send for AgentEntry
impl Sync for AgentEntry
impl Unpin for AgentEntry
impl UnsafeUnpin for AgentEntry
impl UnwindSafe for AgentEntry
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