pub struct TraceFileConfig {
pub timeout_secs: Option<u64>,
pub keep_raw_output: Option<bool>,
pub include_warnings: Option<bool>,
pub only_failures: Option<bool>,
}Expand description
[trace] settings from lean-agent.toml.
Fields§
§timeout_secs: Option<u64>Per-file process timeout in seconds.
keep_raw_output: Option<bool>Keep raw stdout/stderr in records.
include_warnings: Option<bool>Include warnings in parsed diagnostics.
only_failures: Option<bool>Emit only non-passing files.
Trait Implementations§
Source§impl Clone for TraceFileConfig
impl Clone for TraceFileConfig
Source§fn clone(&self) -> TraceFileConfig
fn clone(&self) -> TraceFileConfig
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 TraceFileConfig
impl Debug for TraceFileConfig
Source§impl Default for TraceFileConfig
impl Default for TraceFileConfig
Source§fn default() -> TraceFileConfig
fn default() -> TraceFileConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TraceFileConfig
impl<'de> Deserialize<'de> for TraceFileConfig
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 TraceFileConfig
impl RefUnwindSafe for TraceFileConfig
impl Send for TraceFileConfig
impl Sync for TraceFileConfig
impl Unpin for TraceFileConfig
impl UnsafeUnpin for TraceFileConfig
impl UnwindSafe for TraceFileConfig
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