pub struct AgentOrchestrationConfig {
pub profiling_enabled: bool,
}Expand description
Specifies whether profiling is enabled or disabled for a profiling group. It is used by ConfigureAgent to enable or disable profiling for a profiling group.
Fields§
§profiling_enabled: bool A Boolean that specifies whether the profiling agent collects profiling data or not. Set to true to enable profiling.
Trait Implementations§
Source§impl Clone for AgentOrchestrationConfig
impl Clone for AgentOrchestrationConfig
Source§fn clone(&self) -> AgentOrchestrationConfig
fn clone(&self) -> AgentOrchestrationConfig
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 AgentOrchestrationConfig
impl Debug for AgentOrchestrationConfig
Source§impl Default for AgentOrchestrationConfig
impl Default for AgentOrchestrationConfig
Source§fn default() -> AgentOrchestrationConfig
fn default() -> AgentOrchestrationConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentOrchestrationConfig
impl<'de> Deserialize<'de> for AgentOrchestrationConfig
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 AgentOrchestrationConfig
impl PartialEq for AgentOrchestrationConfig
Source§impl Serialize for AgentOrchestrationConfig
impl Serialize for AgentOrchestrationConfig
impl StructuralPartialEq for AgentOrchestrationConfig
Auto Trait Implementations§
impl Freeze for AgentOrchestrationConfig
impl RefUnwindSafe for AgentOrchestrationConfig
impl Send for AgentOrchestrationConfig
impl Sync for AgentOrchestrationConfig
impl Unpin for AgentOrchestrationConfig
impl UnwindSafe for AgentOrchestrationConfig
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