#[non_exhaustive]pub struct AgentOrchestrationConfig { /* private fields */ }
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.
Implementations
sourceimpl 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.
sourceimpl AgentOrchestrationConfig
impl AgentOrchestrationConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AgentOrchestrationConfig
.
Trait Implementations
sourceimpl Clone for AgentOrchestrationConfig
impl Clone for AgentOrchestrationConfig
sourcefn clone(&self) -> AgentOrchestrationConfig
fn clone(&self) -> AgentOrchestrationConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AgentOrchestrationConfig
impl Debug for AgentOrchestrationConfig
sourceimpl PartialEq<AgentOrchestrationConfig> for AgentOrchestrationConfig
impl PartialEq<AgentOrchestrationConfig> for AgentOrchestrationConfig
sourcefn eq(&self, other: &AgentOrchestrationConfig) -> bool
fn eq(&self, other: &AgentOrchestrationConfig) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more