#[non_exhaustive]pub struct AgentOrchestrationConfig {
pub profiling_enabled: Option<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 (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.profiling_enabled: Option<bool>
A Boolean
that specifies whether the profiling agent collects profiling data or not. Set to true
to enable profiling.
Implementations§
source§impl AgentOrchestrationConfig
impl AgentOrchestrationConfig
sourcepub fn profiling_enabled(&self) -> Option<bool>
pub fn profiling_enabled(&self) -> Option<bool>
A Boolean
that specifies whether the profiling agent collects profiling data or not. Set to true
to enable profiling.
source§impl AgentOrchestrationConfig
impl AgentOrchestrationConfig
sourcepub fn builder() -> AgentOrchestrationConfigBuilder
pub fn builder() -> AgentOrchestrationConfigBuilder
Creates a new builder-style object to manufacture AgentOrchestrationConfig
.
Trait Implementations§
source§impl Clone for AgentOrchestrationConfig
impl Clone for AgentOrchestrationConfig
source§fn clone(&self) -> AgentOrchestrationConfig
fn clone(&self) -> AgentOrchestrationConfig
Returns a copy 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 PartialEq<AgentOrchestrationConfig> for AgentOrchestrationConfig
impl PartialEq<AgentOrchestrationConfig> for AgentOrchestrationConfig
source§fn eq(&self, other: &AgentOrchestrationConfig) -> bool
fn eq(&self, other: &AgentOrchestrationConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AgentOrchestrationConfig
Auto Trait Implementations§
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