pub struct PolicyOverlayPatch {
pub max_steps: Option<usize>,
pub max_execution_time_ms: Option<u64>,
pub provider_timeout_ms: Option<u64>,
pub max_tool_timeout_ms: Option<u64>,
pub max_parallel_skill_calls: Option<usize>,
}Fields§
§max_steps: Option<usize>§max_execution_time_ms: Option<u64>§provider_timeout_ms: Option<u64>§max_tool_timeout_ms: Option<u64>§max_parallel_skill_calls: Option<usize>Trait Implementations§
Source§impl Clone for PolicyOverlayPatch
impl Clone for PolicyOverlayPatch
Source§fn clone(&self) -> PolicyOverlayPatch
fn clone(&self) -> PolicyOverlayPatch
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 PolicyOverlayPatch
impl Debug for PolicyOverlayPatch
Source§impl Default for PolicyOverlayPatch
impl Default for PolicyOverlayPatch
Source§fn default() -> PolicyOverlayPatch
fn default() -> PolicyOverlayPatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PolicyOverlayPatch
impl<'de> Deserialize<'de> for PolicyOverlayPatch
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PolicyOverlayPatch, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PolicyOverlayPatch, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PolicyOverlayPatch
impl PartialEq for PolicyOverlayPatch
Source§fn eq(&self, other: &PolicyOverlayPatch) -> bool
fn eq(&self, other: &PolicyOverlayPatch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PolicyOverlayPatch
impl Serialize for PolicyOverlayPatch
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PolicyOverlayPatch
Auto Trait Implementations§
impl Freeze for PolicyOverlayPatch
impl RefUnwindSafe for PolicyOverlayPatch
impl Send for PolicyOverlayPatch
impl Sync for PolicyOverlayPatch
impl Unpin for PolicyOverlayPatch
impl UnsafeUnpin for PolicyOverlayPatch
impl UnwindSafe for PolicyOverlayPatch
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