pub struct DaemonHostConfig {
pub auto_snapshot_interval: u64,
pub max_log_entries: u32,
}Expand description
Configuration for a daemon host.
Fields§
§auto_snapshot_interval: u64How often to auto-snapshot (in events processed). 0 = manual only.
max_log_entries: u32Maximum events to buffer before forcing a snapshot.
Trait Implementations§
Source§impl Clone for DaemonHostConfig
impl Clone for DaemonHostConfig
Source§fn clone(&self) -> DaemonHostConfig
fn clone(&self) -> DaemonHostConfig
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 moreSource§impl Debug for DaemonHostConfig
impl Debug for DaemonHostConfig
Auto Trait Implementations§
impl Freeze for DaemonHostConfig
impl RefUnwindSafe for DaemonHostConfig
impl Send for DaemonHostConfig
impl Sync for DaemonHostConfig
impl Unpin for DaemonHostConfig
impl UnsafeUnpin for DaemonHostConfig
impl UnwindSafe for DaemonHostConfig
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