pub struct ProcInfoSnapshot {
pub parent_session_id: TaskId,
pub role: AgentRole,
pub isolation: AgentIsolation,
pub context_inheritance: ContextInheritance,
pub result: Option<ResultSnapshot>,
}Expand description
Snapshot of ProcInfo (sub-agent identity).
Fields§
§parent_session_id: TaskId§role: AgentRole§isolation: AgentIsolation§context_inheritance: ContextInheritance§result: Option<ResultSnapshot>Trait Implementations§
Source§impl Clone for ProcInfoSnapshot
impl Clone for ProcInfoSnapshot
Source§fn clone(&self) -> ProcInfoSnapshot
fn clone(&self) -> ProcInfoSnapshot
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 ProcInfoSnapshot
impl Debug for ProcInfoSnapshot
Source§impl<'de> Deserialize<'de> for ProcInfoSnapshot
impl<'de> Deserialize<'de> for ProcInfoSnapshot
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
Auto Trait Implementations§
impl Freeze for ProcInfoSnapshot
impl RefUnwindSafe for ProcInfoSnapshot
impl Send for ProcInfoSnapshot
impl Sync for ProcInfoSnapshot
impl Unpin for ProcInfoSnapshot
impl UnsafeUnpin for ProcInfoSnapshot
impl UnwindSafe for ProcInfoSnapshot
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