pub struct WorkflowAgentRunSummary {
pub id: String,
pub phase: Option<String>,
pub provider: Option<String>,
pub model: Option<String>,
pub provider_session_id: Option<String>,
pub usage: Option<AgentUsage>,
pub isolation: Option<AgentRunIsolation>,
}Fields§
§id: String§phase: Option<String>§provider: Option<String>§model: Option<String>§provider_session_id: Option<String>§usage: Option<AgentUsage>§isolation: Option<AgentRunIsolation>Trait Implementations§
Source§impl Clone for WorkflowAgentRunSummary
impl Clone for WorkflowAgentRunSummary
Source§fn clone(&self) -> WorkflowAgentRunSummary
fn clone(&self) -> WorkflowAgentRunSummary
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 WorkflowAgentRunSummary
impl Debug for WorkflowAgentRunSummary
Source§impl<'de> Deserialize<'de> for WorkflowAgentRunSummary
impl<'de> Deserialize<'de> for WorkflowAgentRunSummary
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 WorkflowAgentRunSummary
impl PartialEq for WorkflowAgentRunSummary
Source§fn eq(&self, other: &WorkflowAgentRunSummary) -> bool
fn eq(&self, other: &WorkflowAgentRunSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WorkflowAgentRunSummary
impl Serialize for WorkflowAgentRunSummary
impl StructuralPartialEq for WorkflowAgentRunSummary
Auto Trait Implementations§
impl Freeze for WorkflowAgentRunSummary
impl RefUnwindSafe for WorkflowAgentRunSummary
impl Send for WorkflowAgentRunSummary
impl Sync for WorkflowAgentRunSummary
impl Unpin for WorkflowAgentRunSummary
impl UnsafeUnpin for WorkflowAgentRunSummary
impl UnwindSafe for WorkflowAgentRunSummary
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