pub struct CollectorOptions {
pub stopped_window: Duration,
pub fs_scan_interval: Duration,
pub activity_timeout: Duration,
}Fields§
§stopped_window: DurationHow long after its last write a process-less transcript still shows as stopped.
fs_scan_interval: DurationHow often to re-list transcript directories.
activity_timeout: DurationA transcript idle for longer than this counts as idle even if the harness never wrote an end-of-turn marker.
Trait Implementations§
Source§impl Clone for CollectorOptions
impl Clone for CollectorOptions
Source§fn clone(&self) -> CollectorOptions
fn clone(&self) -> CollectorOptions
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 CollectorOptions
impl Debug for CollectorOptions
Auto Trait Implementations§
impl Freeze for CollectorOptions
impl RefUnwindSafe for CollectorOptions
impl Send for CollectorOptions
impl Sync for CollectorOptions
impl Unpin for CollectorOptions
impl UnsafeUnpin for CollectorOptions
impl UnwindSafe for CollectorOptions
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