pub struct ShellProcessLineage {
pub argv_summary: String,
pub sandbox_policy_ref: PolicyRef,
pub timeout_ms: u64,
pub agent_owned: bool,
pub detach_requested: bool,
}Expand description
Carries the shell process lineage record payload for journal, event, or fixture surfaces. Creating or cloning it only preserves serialized SDK state; append, publish, replay, or export effects are documented on the runtime and port methods that store it.
Fields§
§argv_summary: StringRedacted summary for display, logs, events, or telemetry. It should describe the value without exposing raw private content.
sandbox_policy_ref: PolicyRefTyped sandbox policy ref reference. Resolving or executing it is a separate policy-gated step.
timeout_ms: u64Timeout budget in milliseconds for the requested operation.
agent_owned: boolWhether the SDK/tooling owns the launched process lifecycle for cancellation and cleanup evidence.
detach_requested: boolWhether detach requested is enabled. Policy, validation, or routing code uses this flag to choose the explicit behavior.
Trait Implementations§
Source§impl Clone for ShellProcessLineage
impl Clone for ShellProcessLineage
Source§fn clone(&self) -> ShellProcessLineage
fn clone(&self) -> ShellProcessLineage
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 ShellProcessLineage
impl Debug for ShellProcessLineage
Source§impl<'de> Deserialize<'de> for ShellProcessLineage
impl<'de> Deserialize<'de> for ShellProcessLineage
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 ShellProcessLineage
Source§impl PartialEq for ShellProcessLineage
impl PartialEq for ShellProcessLineage
Source§fn eq(&self, other: &ShellProcessLineage) -> bool
fn eq(&self, other: &ShellProcessLineage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ShellProcessLineage
impl Serialize for ShellProcessLineage
impl StructuralPartialEq for ShellProcessLineage
Auto Trait Implementations§
impl Freeze for ShellProcessLineage
impl RefUnwindSafe for ShellProcessLineage
impl Send for ShellProcessLineage
impl Sync for ShellProcessLineage
impl Unpin for ShellProcessLineage
impl UnsafeUnpin for ShellProcessLineage
impl UnwindSafe for ShellProcessLineage
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