pub struct DaemonSettings {
pub auto_publish: bool,
pub debounce_secs: u64,
pub publish_on: PublishMode,
pub max_retries: u32,
pub health_check_interval_secs: u64,
pub realtime_debounce_ms: u64,
pub detail_realtime_preview_enabled: bool,
pub detail_auto_expand_selected_event: bool,
}Fields§
§auto_publish: bool§debounce_secs: u64§publish_on: PublishMode§max_retries: u32§health_check_interval_secs: u64§realtime_debounce_ms: u64§detail_realtime_preview_enabled: boolEnable realtime file preview refresh in TUI session detail.
detail_auto_expand_selected_event: boolExpand selected timeline event detail rows by default in TUI session detail.
Trait Implementations§
Source§impl Clone for DaemonSettings
impl Clone for DaemonSettings
Source§fn clone(&self) -> DaemonSettings
fn clone(&self) -> DaemonSettings
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 DaemonSettings
impl Debug for DaemonSettings
Source§impl Default for DaemonSettings
impl Default for DaemonSettings
Source§impl<'de> Deserialize<'de> for DaemonSettings
impl<'de> Deserialize<'de> for DaemonSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DaemonSettings
impl RefUnwindSafe for DaemonSettings
impl Send for DaemonSettings
impl Sync for DaemonSettings
impl Unpin for DaemonSettings
impl UnsafeUnpin for DaemonSettings
impl UnwindSafe for DaemonSettings
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