| 20 | |
| 21 | #[derive(Clone)] |
| 22 | pub struct DebouncedJsonWriter<T> { |
| 23 | label: &'static str, |
| 24 | path: PathBuf, |
| 25 | delay: Duration, |
| 26 | runtime: Arc<Runtime>, |
| 27 | state: Arc<Mutex<DebouncedJsonWriterState<T>>>, |
| 28 | } |
| 29 | |
| 30 | impl<T> DebouncedJsonWriter<T> |
| 31 | where |
nothing calls this directly
no outgoing calls
no test coverage detected