pub struct CodingAgentSandboxPayload {
pub agent_session_id: Option<String>,
pub sandboxes: Option<Vec<CodingAgentSandboxEntry>>,
pub datadog_logs_url: Option<String>,
pub temporal_workflows_url: Option<String>,
}Expand description
Internal Coding agent sandbox details for an agent session.
Fields§
§agent_session_id: Option<String>The agent session identifier.
sandboxes: Option<Vec<CodingAgentSandboxEntry>>All sandbox containers for this session, oldest first.
datadog_logs_url: Option<String>Datadog logs URL covering all sandboxes in the session.
temporal_workflows_url: Option<String>Temporal URL to view workflows for this session.
Trait Implementations§
Source§impl Clone for CodingAgentSandboxPayload
impl Clone for CodingAgentSandboxPayload
Source§fn clone(&self) -> CodingAgentSandboxPayload
fn clone(&self) -> CodingAgentSandboxPayload
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 CodingAgentSandboxPayload
impl Debug for CodingAgentSandboxPayload
Source§impl Default for CodingAgentSandboxPayload
impl Default for CodingAgentSandboxPayload
Source§fn default() -> CodingAgentSandboxPayload
fn default() -> CodingAgentSandboxPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodingAgentSandboxPayloadwhere
CodingAgentSandboxPayload: Default,
impl<'de> Deserialize<'de> for CodingAgentSandboxPayloadwhere
CodingAgentSandboxPayload: Default,
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 CodingAgentSandboxPayload
impl RefUnwindSafe for CodingAgentSandboxPayload
impl Send for CodingAgentSandboxPayload
impl Sync for CodingAgentSandboxPayload
impl Unpin for CodingAgentSandboxPayload
impl UnsafeUnpin for CodingAgentSandboxPayload
impl UnwindSafe for CodingAgentSandboxPayload
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