pub struct AgentConstraints {
pub max_concurrent: i32,
pub timeout_ms: i64,
}Expand description
Agent runtime constraints.
Fields§
§max_concurrent: i32§timeout_ms: i64Trait Implementations§
Source§impl Clone for AgentConstraints
impl Clone for AgentConstraints
Source§fn clone(&self) -> AgentConstraints
fn clone(&self) -> AgentConstraints
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 AgentConstraints
impl Debug for AgentConstraints
Source§impl Default for AgentConstraints
impl Default for AgentConstraints
Source§impl<'de> Deserialize<'de> for AgentConstraints
impl<'de> Deserialize<'de> for AgentConstraints
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 AgentConstraints
impl PartialEq for AgentConstraints
Source§impl Serialize for AgentConstraints
impl Serialize for AgentConstraints
impl StructuralPartialEq for AgentConstraints
Auto Trait Implementations§
impl Freeze for AgentConstraints
impl RefUnwindSafe for AgentConstraints
impl Send for AgentConstraints
impl Sync for AgentConstraints
impl Unpin for AgentConstraints
impl UnwindSafe for AgentConstraints
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