pub struct WorkflowRunLimits {
pub max_concurrent_agents: u32,
pub max_agents_per_run: u32,
pub default_agent_timeout_seconds: u64,
pub default_run_timeout_seconds: u64,
pub default_checkpoint_bytes: u64,
pub max_report_bytes: u64,
}Fields§
§max_concurrent_agents: u32§max_agents_per_run: u32§default_agent_timeout_seconds: u64§default_run_timeout_seconds: u64§default_checkpoint_bytes: u64§max_report_bytes: u64Trait Implementations§
Source§impl Clone for WorkflowRunLimits
impl Clone for WorkflowRunLimits
Source§fn clone(&self) -> WorkflowRunLimits
fn clone(&self) -> WorkflowRunLimits
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 WorkflowRunLimits
impl Debug for WorkflowRunLimits
Source§impl Default for WorkflowRunLimits
impl Default for WorkflowRunLimits
Source§impl<'de> Deserialize<'de> for WorkflowRunLimits
impl<'de> Deserialize<'de> for WorkflowRunLimits
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 WorkflowRunLimits
impl PartialEq for WorkflowRunLimits
Source§fn eq(&self, other: &WorkflowRunLimits) -> bool
fn eq(&self, other: &WorkflowRunLimits) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WorkflowRunLimits
impl Serialize for WorkflowRunLimits
impl StructuralPartialEq for WorkflowRunLimits
Auto Trait Implementations§
impl Freeze for WorkflowRunLimits
impl RefUnwindSafe for WorkflowRunLimits
impl Send for WorkflowRunLimits
impl Sync for WorkflowRunLimits
impl Unpin for WorkflowRunLimits
impl UnsafeUnpin for WorkflowRunLimits
impl UnwindSafe for WorkflowRunLimits
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