pub struct RunnerConfig {
pub api_base_url: String,
pub client_id: String,
pub client_secret: String,
pub instance_id: String,
pub heartbeat_interval_secs: u64,
pub sync_interval_secs: u64,
pub enrollment_retry_secs: u64,
}Fields§
§api_base_url: String§client_id: String§client_secret: String§instance_id: String§heartbeat_interval_secs: u64§sync_interval_secs: u64§enrollment_retry_secs: u64Implementations§
Trait Implementations§
Source§impl Clone for RunnerConfig
impl Clone for RunnerConfig
Source§fn clone(&self) -> RunnerConfig
fn clone(&self) -> RunnerConfig
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 moreAuto Trait Implementations§
impl Freeze for RunnerConfig
impl RefUnwindSafe for RunnerConfig
impl Send for RunnerConfig
impl Sync for RunnerConfig
impl Unpin for RunnerConfig
impl UnsafeUnpin for RunnerConfig
impl UnwindSafe for RunnerConfig
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