pub struct AgentConfig {
pub enable_prog_thread: bool,
pub enable_listen_thread: bool,
pub listen_port: i32,
pub thread_sync: ThreadSync,
pub num_workers: u32,
pub pthr_delay_us: u64,
pub lthr_delay_us: u64,
pub capture_telemetry: bool,
}Fields§
§enable_prog_thread: bool§enable_listen_thread: bool§listen_port: i32§thread_sync: ThreadSync§num_workers: u32§pthr_delay_us: u64§lthr_delay_us: u64§capture_telemetry: boolTrait Implementations§
Source§impl Clone for AgentConfig
impl Clone for AgentConfig
Source§fn clone(&self) -> AgentConfig
fn clone(&self) -> AgentConfig
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 AgentConfig
impl Debug for AgentConfig
Auto Trait Implementations§
impl Freeze for AgentConfig
impl RefUnwindSafe for AgentConfig
impl Send for AgentConfig
impl Sync for AgentConfig
impl Unpin for AgentConfig
impl UnwindSafe for AgentConfig
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