-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunviable.txt
More file actions
300 lines (300 loc) · 47.2 KB
/
Copy pathunviable.txt
File metadata and controls
300 lines (300 loc) · 47.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
espanso/src/patch/config_store.rs:70:9: replace <impl ConfigStore for PatchedConfigStore>::active -> Arc<dyn Config> with Arc::new(Default::default())
espanso-package/src/archive/default.rs:123:9: replace <impl Archiver for DefaultArchiver>::list -> Result<Vec<StoredPackage>> with Ok(vec![Default::default()])
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::new(), vec![MatchResult::new(Default::default())])
espanso-engine/src/process/middleware/context_menu.rs:58:9: replace <impl Middleware for ContextMenuMiddleware>::next -> Event with Default::default()
espanso-config/src/matches/group/loader/yaml/mod.rs:312:5: replace try_convert_into_variable -> Result<(Variable, Vec<Warning>)> with Ok((Default::default(), vec![Default::default()]))
espanso-modulo/src/sys/form/mod.rs:268:13: replace interop::<impl From<types::TextMetadata> for OwnedTextMetadata>::from -> Self with Default::default()
espanso-config/src/matches/group/path.rs:30:5: replace resolve_imports -> Result<(Vec<String>, Vec<ErrorRecord>)> with Ok((vec!["xyzzy".into()], vec![Default::default()]))
espanso/src/cli/worker/match_cache.rs:59:9: replace <impl super::engine::process::middleware::render::MatchProvider<'a> for MatchCache<'a>>::get -> Option<&'a Match> with Some(&Default::default())
espanso/src/cli/worker/engine/mod.rs:93:5: replace initialize_and_spawn -> Result<JoinHandle<ExitMode>> with Ok(JoinHandle::from(Default::default()))
espanso-modulo/src/sys/troubleshooting/mod.rs:97:13: replace interop::OwnedErrorMetadata::to_error_metadata -> ErrorMetadata with Default::default()
espanso/src/cli/worker/match_cache.rs:36:9: replace MatchCache<'a>::load -> Self with Default::default()
espanso-match/src/regex/mod.rs:80:9: replace <impl Matcher<'a, RegexMatcherState, Id> for RegexMatcher<Id>>::process -> (RegexMatcherState, Vec<MatchResult<Id>>) with (Default::default(), vec![MatchResult::from(Default::default())])
espanso/src/cli/worker/engine/funnel/mod.rs:147:5: replace get_modifier_status -> Option<(Modifier, bool)> with Some((Default::default(), true))
espanso/src/cli/worker/engine/mod.rs:93:5: replace initialize_and_spawn -> Result<JoinHandle<ExitMode>> with Ok(JoinHandle::new())
espanso-config/src/matches/store/default.rs:38:9: replace DefaultMatchStore::load -> (Self, Vec<NonFatalErrorSet>) with (Default::default(), vec![])
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:126:9: replace MatchConverter<'a>::global_match_set -> MatchSet with Default::default()
espanso/src/cli/worker/context/default.rs:56:9: replace <impl AppInfoContext for DefaultContext<'_>>::get_active_app_info -> AppInfo with Default::default()
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::from_iter([Default::default()]), vec![])
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![RegexMatch::from(-1)]
espanso-render/src/extension/echo.rs:53:9: replace <impl Extension for EchoExtension>::calculate -> crate::ExtensionResult with Default::default()
espanso-detect/src/mac/mod.rs:479:5: replace raw_to_mouse_button -> Option<MouseButton> with Some(Default::default())
espanso-ui/src/mac/mod.rs:227:9: replace <impl From<RawUIEvent> for Option<UIEvent>>::from -> Option<UIEvent> with Some(Default::default())
espanso-detect/src/lib.rs:110:5: replace get_source -> Result<Box<dyn Source>> with Ok(Box::new(Default::default()))
espanso-package/src/archive/default.rs:99:9: replace <impl Archiver for DefaultArchiver>::get -> Result<StoredPackage> with Ok(Default::default())
espanso/src/cli/worker/engine/process/middleware/render/extension/choice.rs:36:9: replace <impl ChoiceSelector for ChoiceSelectorAdapter<'_>>::show -> ChoiceSelectorResult with Default::default()
espanso/src/cli/worker/engine/funnel/secure_input.rs:50:9: replace <impl funnel::Source<'a> for SecureInputSource<'a>>::receive -> Option<Event> with Some(Default::default())
espanso-modulo/src/sys/form/mod.rs:219:13: replace interop::OwnedField::metadata -> FieldMetadata with Default::default()
espanso-modulo/src/sys/form/mod.rs:246:13: replace interop::<impl From<types::LabelMetadata> for OwnedLabelMetadata>::from -> Self with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:57:9: replace MatchConverter<'a>::get_rolling_matches -> Vec<RollingMatch<i32>> with vec![RollingMatch::from(-1)]
espanso-ipc/src/unix.rs:119:9: replace <impl IPCClient<Event> for UnixIPCClient>::send_sync -> Result<Event> with Ok(Default::default())
espanso/src/cli/worker/engine/funnel/mod.rs:53:5: replace init_and_spawn -> Result<(DetectSource, ModifierStateStore, Sequencer, Option<KeyStateStore>,)> with Ok((Default::default(), Default::default(), Default::default(), None))
espanso/src/cli/worker/engine/dispatch/executor/clipboard_injector.rs:194:9: replace ClipboardRestoreGuard<'a>::lock -> Self with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/regex.rs:52:9: replace <impl Matcher<'a, MatcherState<'a>> for RegexMatcherAdapter>::process -> (MatcherState<'a>, Vec<MatchResult>) with (Default::default(), vec![Default::default()])
espanso/src/cli/worker/config.rs:59:9: replace ConfigManager<'a>::active_context -> (Arc<dyn Config>, MatchSet) with (Arc::new(Default::default()), Default::default())
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::from_iter([Default::default()]), vec![MatchResult::from_iter([Default::default()])])
espanso-match/src/rolling/tree.rs:56:9: replace MatcherTreeNode<Id>::from_matches -> MatcherTreeNode<Id> with MatcherTreeNode::new()
espanso-modulo/src/sys/form/mod.rs:296:13: replace interop::<impl From<types::ChoiceMetadata> for OwnedChoiceMetadata>::from -> Self with Default::default()
espanso-modulo/src/sys/search/mod.rs:67:13: replace interop::<impl From<&types::Search> for OwnedSearch>::from -> Self with Default::default()
espanso-modulo/src/search/algorithm.rs:27:5: replace get_algorithm -> Box<FilterCallback> with Box::new(Default::default())
espanso/src/cli/worker/engine/process/middleware/matcher/rolling.rs:57:9: replace <impl Matcher<'a, MatcherState<'a>> for RollingMatcherAdapter>::process -> (MatcherState<'a>, Vec<MatchResult>) with (Default::default(), vec![])
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::from_iter([Default::default()]), vec![MatchResult::new(Default::default())])
espanso-engine/src/process/middleware/notification.rs:46:9: replace <impl Middleware for NotificationMiddleware<'_>>::next -> Event with Default::default()
espanso-engine/src/process/middleware/icon_status.rs:48:9: replace <impl Middleware for IconStatusMiddleware>::next -> Event with Default::default()
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:257:5: replace extract_uppercasing_style -> Option<UpperCasingStyle> with Some(Default::default())
espanso-match/src/rolling/mod.rs:46:9: replace RollingMatch<Id>::from_string -> Self with Default::default()
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:165:5: replace convert_value -> espanso_render::Value with Default::default()
espanso-package/src/package/default.rs:68:9: replace <impl Package for DefaultPackage>::location -> &std::path::Path with &Default::default()
espanso-package/src/util/github.rs:37:5: replace extract_github_url_parts -> Option<GitHubParts> with Some(Default::default())
espanso/src/patch/config_store.rs:89:9: replace <impl ConfigStore for PatchedConfigStore>::get_all_match_paths -> std::collections::HashSet<String> with HashSet::from_iter([String::new()])
espanso/src/cli/worker/match_cache.rs:156:9: replace <impl super::engine::process::middleware::multiplex::MatchProvider<'a> for CombinedMatchCache<'a>>::get -> Option<super::engine::process::middleware::multiplex::MatchResult<'a>> with Some(Default::default())
espanso/src/cli/worker/engine/process/middleware/render/extension/form.rs:52:5: replace convert_fields -> HashMap<String, FormField> with HashMap::from_iter([("xyzzy".into(), Default::default())])
espanso-modulo/src/form/parser/split.rs:32:9: replace <impl Iterator for SplitCaptures<'_, 't>>::next -> Option<SplitState<'t>> with Some(Default::default())
espanso-render/src/renderer/mod.rs:216:5: replace get_matching_template -> Option<&'a Template> with Some(&Default::default())
espanso-modulo/src/form/generator.rs:28:5: replace generate -> Form with Default::default()
espanso-match/src/rolling/matcher.rs:150:9: replace RollingMatcher<Id>::find_refs -> Vec<(&'a MatcherTreeRef<Id>, IsWordSeparator)> with vec![(&MatcherTreeRef::new(Default::default()), Default::default())]
espanso/src/cli/worker/engine/funnel/detect.rs:128:5: replace convert_to_engine_variant -> Variant with Default::default()
espanso-render/src/extension/exec_util.rs:57:5: replace determine_default_macos_shell -> Option<MacShell> with Some(Default::default())
espanso-engine/src/process/middleware/disable.rs:62:9: replace <impl Middleware for DisableMiddleware>::next -> Event with Default::default()
espanso-package/src/resolver.rs:37:5: replace resolve_package -> Result<ResolvedPackage> with Ok(Default::default())
espanso-detect/src/mac/mod.rs:332:9: replace <impl From<RawInputEvent> for Option<InputEvent>>::from -> Option<InputEvent> with Some(Default::default())
espanso/src/cli/launcher/edition_check.rs:24:5: replace is_wrong_edition -> (bool, DetectedOS) with (true, Default::default())
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:50:5: replace convert_to_engine_result -> MatchResult with Default::default()
espanso-config/src/matches/group/loader/yaml/mod.rs:71:9: replace <impl Importer for YAMLImporter>::load_group -> anyhow::Result<(crate::matches::group::MatchGroup, Option<NonFatalErrorSet>)> with Ok((Default::default(), Some(Default::default())))
espanso-modulo/src/sys/form/mod.rs:343:13: replace interop::<impl From<types::RowMetadata> for OwnedRowMetadata>::from -> Self with Default::default()
espanso-detect/src/mac/mod.rs:296:5: replace convert_hotkey_to_raw -> Option<RawHotKey> with Some(Default::default())
espanso-render/src/extension/date.rs:81:9: replace DateExtension<'_>::get_date -> DateTime<Local> with DateTime::from_iter([Default::default()])
espanso/src/cli/worker/engine/funnel/mod.rs:147:5: replace get_modifier_status -> Option<(Modifier, bool)> with Some((Default::default(), false))
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::new(Default::default()), vec![MatchResult::from(Default::default())])
espanso-render/src/extension/random.rs:44:9: replace <impl Extension for RandomExtension>::calculate -> crate::ExtensionResult with Default::default()
espanso-config/src/config/store.rs:72:9: replace DefaultConfigStore::load -> Result<(Self, Vec<NonFatalErrorSet>)> with Ok((Default::default(), vec![]))
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:57:9: replace MatchConverter<'a>::get_rolling_matches -> Vec<RollingMatch<i32>> with vec![RollingMatch::new(1)]
espanso-package/src/provider/hub.rs:59:9: replace <impl PackageProvider for EspansoHubPackageProvider>::download -> Result<Box<dyn Package>> with Ok(Box::new(Default::default()))
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![RegexMatch::new(-1)]
espanso/src/cli/worker/engine/mod.rs:93:5: replace initialize_and_spawn -> Result<JoinHandle<ExitMode>> with Ok(JoinHandle::new(Default::default()))
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![RegexMatch::new(0)]
espanso-config/src/config/parse/yaml.rs:169:9: replace YAMLConfig::parse_from_str -> Result<Self> with Ok(Default::default())
espanso-render/src/extension/date.rs:60:23: replace + with * in <impl Extension for DateExtension<'_>>::calculate
espanso-package/src/provider/hub.rs:99:9: replace EspansoHubPackageProvider::get_index -> Result<PackageIndex> with Ok(Default::default())
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![RegexMatch::from(1)]
espanso-package/src/archive/default.rs:48:9: replace <impl Archiver for DefaultArchiver>::save -> Result<ArchivedPackage> with Ok(Default::default())
espanso-package/src/util/gitlab.rs:58:5: replace resolve_repo_scheme -> Result<Option<ResolvedRepoScheme>> with Ok(Some(Default::default()))
espanso/src/cli/worker/engine/dispatch/executor/clipboard_injector.rs:226:5: replace parse_combination -> Option<Vec<Key>> with Some(vec![Default::default()])
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:57:9: replace MatchConverter<'a>::get_rolling_matches -> Vec<RollingMatch<i32>> with vec![RollingMatch::new()]
espanso-engine/src/process/middleware/match_select.rs:65:9: replace <impl Middleware for MatchSelectMiddleware<'_>>::next -> Event with Default::default()
espanso/src/cli/worker/engine/process/middleware/disable.rs:29:5: replace extract_disable_options -> DisableOptions with Default::default()
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::from(Default::default()), vec![MatchResult::from(Default::default())])
espanso-ui/src/mac/mod.rs:72:5: replace create -> Result<(MacRemote, MacEventLoop)> with Ok((Default::default(), Default::default()))
espanso/src/cli/worker/engine/process/middleware/render/extension/choice.rs:46:5: replace convert_items -> Vec<SearchItem> with vec![Default::default()]
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::from(Default::default()), vec![MatchResult::new(Default::default())])
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![RegexMatch::new()]
espanso-inject/src/keys.rs:235:9: replace Key::parse -> Option<Key> with Some(Default::default())
espanso-match/src/regex/mod.rs:80:9: replace <impl Matcher<'a, RegexMatcherState, Id> for RegexMatcher<Id>>::process -> (RegexMatcherState, Vec<MatchResult<Id>>) with (Default::default(), vec![MatchResult::new(Default::default())])
espanso-package/src/provider/hub.rs:128:9: replace EspansoHubPackageProvider::get_index_from_cache -> Result<Option<CachedPackageIndex>> with Ok(Some(Default::default()))
espanso-config/src/error.rs:53:9: replace ErrorRecord::error -> Self with Default::default()
espanso-info/src/cocoa/mod.rs:38:9: replace <impl AppInfoProvider for CocoaAppInfoProvider>::get_info -> AppInfo with Default::default()
espanso/src/cli/worker/match_cache.rs:111:9: replace CombinedMatchCache<'a>::get -> Option<MatchVariant<'a>> with Some(Default::default())
espanso-engine/src/process/middleware/cause.rs:39:9: replace <impl Middleware for CauseCompensateMiddleware>::next -> Event with Default::default()
espanso-render/src/extension/choice.rs:64:9: replace <impl Extension for ChoiceExtension<'_>>::calculate -> crate::ExtensionResult with Default::default()
espanso-package/src/resolver.rs:70:5: replace resolve_all_packages -> Result<Vec<ResolvedPackage>> with Ok(vec![Default::default()])
espanso/src/patch/config_store.rs:85:9: replace <impl ConfigStore for PatchedConfigStore>::configs -> Vec<Arc<dyn Config>> with vec![Arc::new(Default::default())]
espanso-render/src/extension/shell.rs:217:9: replace <impl Extension for ShellExtension>::calculate -> crate::ExtensionResult with Default::default()
espanso-config/src/matches/store/default.rs:38:9: replace DefaultMatchStore::load -> (Self, Vec<NonFatalErrorSet>) with (Default::default(), vec![Default::default()])
espanso-engine/src/process/middleware/exit.rs:39:9: replace <impl Middleware for ExitMiddleware>::next -> Event with Default::default()
espanso-config/src/matches/group/path.rs:30:5: replace resolve_imports -> Result<(Vec<String>, Vec<ErrorRecord>)> with Ok((vec![], vec![Default::default()]))
espanso/src/cli/worker/engine/funnel/detect.rs:41:9: replace <impl funnel::Source<'a> for DetectSource>::receive -> Option<Event> with Some(Default::default())
espanso-config/src/config/store.rs:72:9: replace DefaultConfigStore::load -> Result<(Self, Vec<NonFatalErrorSet>)> with Ok((Default::default(), vec![Default::default()]))
espanso/src/cli/worker/config.rs:135:9: replace <impl super::engine::dispatch::executor::clipboard_injector::ClipboardParamsProvider for ConfigManager<'_>>::get -> super::engine::dispatch::executor::clipboard_injector::ClipboardParams with Default::default()
espanso-clipboard/src/lib.rs:81:5: replace get_clipboard -> Result<Box<dyn Clipboard>> with Ok(Box::new(Default::default()))
espanso-config/src/matches/group/loader/yaml/parse.rs:53:9: replace YAMLMatchGroup::parse_from_file -> Result<Self> with Ok(Default::default())
espanso/src/cli/worker/engine/process/middleware/render/extension/form.rs:42:9: replace <impl FormProvider for FormProviderAdapter<'_>>::show -> FormProviderResult with Default::default()
espanso-modulo/src/sys/search/mod.rs:141:13: replace interop::<impl From<&types::SearchItem> for OwnedSearchItem>::from -> Self with Default::default()
espanso/src/patch/config_store.rs:66:9: replace <impl ConfigStore for PatchedConfigStore>::default -> Arc<dyn Config> with Arc::new(Default::default())
espanso-render/src/extension/clipboard.rs:49:9: replace <impl Extension for ClipboardExtension<'_>>::calculate -> crate::ExtensionResult with Default::default()
espanso/src/cli/daemon/troubleshoot.rs:113:5: replace load_config_or_troubleshoot_until_config_is_correct_or_abort -> Result<(ConfigLoadResult, Option<TroubleshootGuard>)> with Ok((Default::default(), Some(Default::default())))
espanso-engine/src/process/middleware/matcher.rs:217:5: replace convert_to_matcher_event -> Option<MatcherEvent> with Some(Default::default())
espanso-package/src/lib.rs:98:5: replace get_archiver -> Result<Box<dyn Archiver>> with Ok(Box::new(Default::default()))
espanso-kvs/src/persistent.rs:55:9: replace <impl KVS for PersistentJsonKVS>::get -> Result<Option<T>> with Ok(Some(Default::default()))
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::from_iter([Default::default()]), vec![MatchResult::from(Default::default())])
espanso/src/cli/worker/engine/dispatch/executor/clipboard_injector.rs:108:9: replace ClipboardInjectorAdapter<'a>::restore_clipboard_guard -> Option<ClipboardRestoreGuard<'a>> with Some(Default::default())
espanso-modulo/src/sys/troubleshooting/mod.rs:70:13: replace interop::<impl From<&ErrorSet> for OwnedErrorSet>::from -> Self with Default::default()
espanso-engine/src/process/middleware/image_resolve.rs:47:9: replace <impl Middleware for ImageResolverMiddleware<'_>>::next -> Event with Default::default()
espanso-config/src/config/resolve.rs:128:9: replace <impl Config for ResolvedConfig>::backend -> Backend with Default::default()
espanso/src/cli/worker/engine/process/middleware/render/extension/form.rs:52:5: replace convert_fields -> HashMap<String, FormField> with HashMap::from_iter([(String::new(), Default::default())])
espanso-engine/src/lib.rs:54:9: replace Engine<'a>::run -> ExitMode with Default::default()
espanso-engine/src/process/middleware/cursor_hint.rs:40:9: replace <impl Middleware for CursorHintMiddleware>::next -> Event with Default::default()
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::from(Default::default()), vec![MatchResult::from_iter([Default::default()])])
espanso-render/src/extension/script.rs:57:9: replace <impl Extension for ScriptExtension>::calculate -> crate::ExtensionResult with Default::default()
espanso-package/src/provider/hub.rs:119:9: replace EspansoHubPackageProvider::download_index -> Result<PackageIndex> with Ok(Default::default())
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:106:9: replace MatchConverter<'a>::get_hotkeys -> Vec<HotKey> with vec![Default::default()]
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::new(Default::default()), vec![MatchResult::new(Default::default())])
espanso-modulo/src/search/config.rs:31:5: replace default_items -> Vec<SearchItem> with vec![Default::default()]
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::new(Default::default()), vec![MatchResult::from_iter([Default::default()])])
espanso-match/src/rolling/tree.rs:56:9: replace MatcherTreeNode<Id>::from_matches -> MatcherTreeNode<Id> with MatcherTreeNode::new(Default::default())
espanso-package/src/util/gitlab.rs:38:5: replace extract_gitlab_url_parts -> Option<GitLabParts> with Some(Default::default())
espanso-modulo/src/sys/form/mod.rs:176:13: replace interop::<impl From<types::Field> for OwnedField>::from -> Self with Default::default()
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::new(), vec![MatchResult::new()])
espanso-engine/src/process/middleware/action.rs:62:9: replace <impl Middleware for ActionMiddleware<'_>>::next -> Event with Default::default()
espanso-render/src/extension/form.rs:60:9: replace <impl Extension for FormExtension<'_>>::calculate -> crate::ExtensionResult with Default::default()
espanso/src/cli/worker/engine/funnel/mod.rs:53:5: replace init_and_spawn -> Result<(DetectSource, ModifierStateStore, Sequencer, Option<KeyStateStore>,)> with Ok((Default::default(), Default::default(), Default::default(), Some(Default::default())))
espanso-render/src/extension/date.rs:81:9: replace DateExtension<'_>::get_date -> DateTime<Local> with DateTime::new()
espanso/src/cli/worker/engine/mod.rs:93:5: replace initialize_and_spawn -> Result<JoinHandle<ExitMode>> with Ok(JoinHandle::from_iter([Default::default()]))
espanso/src/cli/worker/engine/process/middleware/open_config.rs:17:9: replace <impl ConfigPathProvider for ConfigPathProviderAdapter<'_>>::get_config_path -> &std::path::Path with &Default::default()
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::from_iter([Default::default()]), vec![MatchResult::new()])
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:57:9: replace MatchConverter<'a>::get_rolling_matches -> Vec<RollingMatch<i32>> with vec![RollingMatch::new(-1)]
espanso-render/src/renderer/resolve.rs:76:5: replace generate_nodes -> HashMap<&'a str, Node<'a>> with HashMap::from_iter([("", Default::default())])
espanso/src/cli/package/update.rs:33:5: replace update_package -> Result<UpdateResults> with Ok(Default::default())
espanso-modulo/src/sys/form/mod.rs:290:13: replace interop::<impl Interoperable for OwnedChoiceMetadata>::as_ptr -> *const c_void with Default::default()
espanso/src/cli/util.rs:34:9: replace <impl CommandExt for Command>::with_paths_overrides -> &mut Self with Box::leak(Box::new(Default::default()))
espanso-render/src/extension/date.rs:81:9: replace DateExtension<'_>::get_date -> DateTime<Local> with DateTime::new(Default::default())
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::new(Default::default()), vec![])
espanso-info/src/lib.rs:56:5: replace get_provider -> Result<Box<dyn AppInfoProvider>> with Ok(Box::new(Default::default()))
espanso/src/cli/worker/match_cache.rs:127:9: replace <impl super::engine::process::middleware::match_select::MatchProvider<'a> for CombinedMatchCache<'a>>::get_matches -> Vec<MatchSummary<'a>> with vec![Default::default()]
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:40:5: replace convert_to_match_event -> espanso_match::event::Event with Default::default()
espanso-modulo/src/sys/form/mod.rs:262:13: replace interop::<impl Interoperable for OwnedTextMetadata>::as_ptr -> *const c_void with Default::default()
espanso/src/cli/worker/engine/funnel/modifier.rs:155:9: replace <impl espanso_engine::process::ModifierStateProvider for ModifierStateStore>::get_modifier_state -> espanso_engine::process::ModifierState with Default::default()
espanso/src/cli/worker/config.rs:53:9: replace ConfigManager<'a>::active -> Arc<dyn Config> with Arc::new(Default::default())
espanso/src/cli/worker/ipc.rs:98:5: replace send_event -> EventHandlerResponse<IPCEvent> with EventHandlerResponse::from(Default::default())
espanso/src/lock.rs:65:5: replace acquire_daemon_lock -> Option<Lock> with Some(Default::default())
espanso-match/src/regex/mod.rs:80:9: replace <impl Matcher<'a, RegexMatcherState, Id> for RegexMatcher<Id>>::process -> (RegexMatcherState, Vec<MatchResult<Id>>) with (Default::default(), vec![MatchResult::new()])
espanso/src/cli/daemon/troubleshoot.rs:36:5: replace launch_troubleshoot -> Result<TroubleshootGuard> with Ok(Default::default())
espanso/src/cli/worker/match_cache.rs:68:9: replace <impl espanso_engine::process::MatchInfoProvider for MatchCache<'_>>::get_force_mode -> Option<espanso_engine::event::effect::TextInjectMode> with Some(Default::default())
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::new(), vec![MatchResult::from(Default::default())])
espanso/src/patch/config_store.rs:89:9: replace <impl ConfigStore for PatchedConfigStore>::get_all_match_paths -> std::collections::HashSet<String> with HashSet::from_iter(["xyzzy".into()])
espanso/src/cli/worker/engine/caches/app_info_provider.rs:46:9: replace <impl AppInfoProvider for CachedAppInfoProvider<'_>>::get_info -> espanso_info::AppInfo with Default::default()
espanso-engine/src/process/middleware/search.rs:48:9: replace <impl Middleware for SearchMiddleware<'_>>::next -> Event with Default::default()
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::new(Default::default()), vec![MatchResult::new()])
espanso/src/cli/worker/engine/funnel/detect.rs:135:5: replace convert_to_engine_status -> Status with Default::default()
espanso-config/src/error.rs:38:9: replace NonFatalErrorSet::single_error -> Self with Default::default()
espanso-detect/src/mac/mod.rs:406:5: replace key_code_to_key -> (Key, Option<Variant>) with (Default::default(), None)
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![RegexMatch::from_iter([0])]
espanso-package/src/archive/mod.rs:103:9: replace <impl From<&PackageSpecifier> for PackageSource>::from -> Self with Default::default()
espanso-render/src/extension/date.rs:54:9: replace <impl Extension for DateExtension<'_>>::calculate -> crate::ExtensionResult with Default::default()
espanso/src/cli/worker/engine/funnel/detect.rs:142:5: replace convert_to_engine_mouse_button -> MouseButton with Default::default()
espanso-engine/src/process/middleware/multiplex.rs:45:9: replace <impl Middleware for MultiplexMiddleware<'_>>::next -> Event with Default::default()
espanso/src/cli/worker/engine/keyboard_layout_util.rs:48:5: replace generate_detect_rmlvo -> Option<espanso_detect::KeyboardConfig> with Some(Default::default())
espanso/src/cli/worker/ipc.rs:98:5: replace send_event -> EventHandlerResponse<IPCEvent> with EventHandlerResponse::from_iter([Default::default()])
espanso-render/src/renderer/resolve.rs:43:5: replace resolve_evaluation_order -> Result<Vec<&'a Variable>> with Ok(vec![&Default::default()])
espanso-modulo/src/sys/form/mod.rs:123:13: replace interop::<impl From<types::Form> for OwnedForm>::from -> Self with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/regex.rs:52:9: replace <impl Matcher<'a, MatcherState<'a>> for RegexMatcherAdapter>::process -> (MatcherState<'a>, Vec<MatchResult>) with (Default::default(), vec![])
espanso-render/src/extension/shell.rs:52:9: replace Shell::execute_cmd -> std::io::Result<Output> with Ok(Default::default())
espanso/src/cli/worker/config.rs:103:9: replace <impl super::engine::process::middleware::render::ConfigProvider<'a> for ConfigManager<'a>>::configs -> Vec<(Arc<dyn Config>, MatchSet)> with vec![(Arc::new(Default::default()), Default::default())]
espanso-detect/src/mac/mod.rs:406:5: replace key_code_to_key -> (Key, Option<Variant>) with (Default::default(), Some(Default::default()))
espanso-package/src/provider/hub.rs:179:9: replace PackageIndex::get_package -> Option<PackageInfo> with Some(Default::default())
espanso-ui/src/lib.rs:80:5: replace create_ui -> Result<(Box<dyn UIRemote>, Box<dyn UIEventLoop>)> with Ok((Box::new(Default::default()), Box::new(Default::default())))
espanso-modulo/src/form/parser/layout.rs:35:5: replace parse_layout -> Vec<Vec<Token>> with vec![vec![Default::default()]]
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:57:9: replace MatchConverter<'a>::get_rolling_matches -> Vec<RollingMatch<i32>> with vec![RollingMatch::from_iter([1])]
espanso-package/src/provider/git.rs:74:9: replace <impl PackageProvider for GitPackageProvider>::download -> Result<Box<dyn Package>> with Ok(Box::new(Default::default()))
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:57:9: replace MatchConverter<'a>::get_rolling_matches -> Vec<RollingMatch<i32>> with vec![RollingMatch::from(1)]
espanso-modulo/src/sys/search/mod.rs:131:13: replace interop::OwnedSearchItem::to_search_item -> SearchItem with Default::default()
espanso/src/cli/worker/engine/keyboard_layout_util.rs:63:5: replace generate_inject_rmlvo -> Option<espanso_inject::KeyboardConfig> with Some(Default::default())
espanso/src/cli/worker/engine/dispatch/executor/key_injector.rs:71:5: replace convert_to_inject_key -> espanso_inject::keys::Key with Default::default()
espanso/src/cli/worker/engine/funnel/detect.rs:73:5: replace convert_to_engine_key -> Key with Default::default()
espanso-config/src/config/store.rs:49:9: replace <impl ConfigStore for DefaultConfigStore>::configs -> Vec<Arc<dyn Config>> with vec![Arc::new(Default::default())]
espanso-render/src/renderer/mod.rs:61:9: replace <impl Renderer for DefaultRenderer<'_>>::render -> RenderResult with Default::default()
espanso-config/src/matches/group/loader/mod.rs:41:5: replace load_match_group -> Result<(MatchGroup, Option<NonFatalErrorSet>)> with Ok((Default::default(), Some(Default::default())))
espanso-match/src/rolling/mod.rs:68:9: replace RollingMatch<Id>::from_items -> Self with Default::default()
espanso-config/src/matches/group/mod.rs:39:9: replace MatchGroup::load -> Result<(Self, Option<NonFatalErrorSet>)> with Ok((Default::default(), Some(Default::default())))
espanso-modulo/src/sys/form/mod.rs:337:13: replace interop::<impl Interoperable for OwnedRowMetadata>::as_ptr -> *const c_void with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![RegexMatch::new(1)]
espanso-package/src/util/github.rs:57:5: replace resolve_repo_scheme -> Result<Option<ResolvedRepoScheme>> with Ok(Some(Default::default()))
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:55:9: replace <impl Middleware for AltCodeSynthesizerMiddleware<'_>>::next -> Event with Default::default()
espanso-engine/src/process/middleware/delay_modifiers.rs:55:9: replace <impl Middleware for DelayForModifierReleaseMiddleware<'_>>::next -> Event with Default::default()
espanso-package/src/archive/mod.rs:83:9: replace PackageSource::parse -> Result<Self> with Ok(Default::default())
espanso-modulo/src/sys/util.rs:24:5: replace convert_to_cstring_or_null -> (Option<CString>, *const c_char) with (Some(Default::default()), Default::default())
espanso-render/src/extension/echo.rs:36:9: replace EchoExtension::new_with_alias -> Self with Default::default()
espanso/src/patch/mod.rs:32:5: replace get_builtin_patches -> Vec<PatchDefinition> with vec![Default::default()]
espanso-engine/src/process/middleware/open_config.rs:47:9: replace <impl Middleware for ConfigMiddleware<'_>>::next -> Event with Default::default()
espanso-engine/src/process/middleware/hotkey.rs:40:9: replace <impl Middleware for HotKeyMiddleware>::next -> Event with Default::default()
espanso-render/src/extension/date.rs:81:9: replace DateExtension<'_>::get_date -> DateTime<Local> with DateTime::from(Default::default())
espanso/src/patch/mod.rs:28:5: replace patch_store -> Box<dyn ConfigStore> with Box::new(Default::default())
espanso/src/path/mod.rs:67:5: replace resolve_paths -> Paths with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![RegexMatch::from_iter([1])]
espanso-match/src/rolling/matcher.rs:150:9: replace RollingMatcher<Id>::find_refs -> Vec<(&'a MatcherTreeRef<Id>, IsWordSeparator)> with vec![(&MatcherTreeRef::new(), Default::default())]
espanso-package/src/manifest.rs:36:9: replace Manifest::parse -> Result<Self> with Ok(Default::default())
espanso/src/cli/worker/engine/process/middleware/image_resolve.rs:36:9: replace <impl PathProvider for PathProviderAdapter<'_>>::get_config_path -> &std::path::Path with &Default::default()
espanso/src/cli/worker/config.rs:160:9: replace <impl super::engine::dispatch::executor::InjectParamsProvider for ConfigManager<'_>>::get -> super::engine::dispatch::executor::InjectParams with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:60:5: replace convert_to_match_key -> espanso_match::event::Key with Default::default()
espanso-modulo/src/search/generator.rs:24:5: replace generate -> types::Search with Default::default()
espanso-match/src/rolling/matcher.rs:150:9: replace RollingMatcher<Id>::find_refs -> Vec<(&'a MatcherTreeRef<Id>, IsWordSeparator)> with vec![(&MatcherTreeRef::from(Default::default()), Default::default())]
espanso-engine/src/event/mod.rs:41:9: replace Event::caused_by -> Event with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:57:9: replace MatchConverter<'a>::get_rolling_matches -> Vec<RollingMatch<i32>> with vec![RollingMatch::from_iter([0])]
espanso-render/src/extension/date.rs:103:5: replace convert_locale_string_to_locale -> Option<Locale> with Some(Default::default())
espanso/src/lock.rs:69:5: replace acquire_worker_lock -> Option<Lock> with Some(Default::default())
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:57:9: replace MatchConverter<'a>::get_rolling_matches -> Vec<RollingMatch<i32>> with vec![RollingMatch::from_iter([-1])]
espanso-modulo/src/sys/troubleshooting/mod.rs:106:13: replace interop::<impl From<&ErrorRecord> for OwnedErrorMetadata>::from -> Self with Default::default()
espanso-inject/src/lib.rs:143:5: replace get_injector -> Result<Box<dyn Injector>> with Ok(Box::new(Default::default()))
espanso-match/src/rolling/tree.rs:56:9: replace MatcherTreeNode<Id>::from_matches -> MatcherTreeNode<Id> with MatcherTreeNode::from_iter([Default::default()])
espanso-render/src/renderer/resolve.rs:127:5: replace create_node_from_var -> Node with Default::default()
espanso/src/cli/worker/config.rs:65:9: replace ConfigManager<'a>::default -> Arc<dyn Config> with Arc::new(Default::default())
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::new(), vec![MatchResult::from_iter([Default::default()])])
espanso-engine/src/process/middleware/matcher.rs:104:9: replace <impl Middleware for MatcherMiddleware<'_, State>>::next -> Event with Default::default()
espanso/src/cli/daemon/troubleshoot.rs:113:5: replace load_config_or_troubleshoot_until_config_is_correct_or_abort -> Result<(ConfigLoadResult, Option<TroubleshootGuard>)> with Ok((Default::default(), None))
espanso-config/src/matches/store/default.rs:52:9: replace <impl MatchStore for DefaultMatchStore>::query -> MatchSet with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/rolling.rs:57:9: replace <impl Matcher<'a, MatcherState<'a>> for RollingMatcherAdapter>::process -> (MatcherState<'a>, Vec<MatchResult>) with (Default::default(), vec![Default::default()])
espanso/src/cli/worker/match_cache.rs:55:9: replace <impl super::engine::process::middleware::render::MatchProvider<'a> for MatchCache<'a>>::matches -> Vec<&'a Match> with vec![&Default::default()]
espanso/src/cli/worker/engine/process/middleware/multiplex.rs:54:9: replace <impl Multiplexer for MultiplexAdapter<'_>>::convert -> Option<EventType> with Some(Default::default())
espanso/src/cli/daemon/troubleshoot.rs:78:5: replace load_config_or_troubleshoot -> LoadResult with Default::default()
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::new(), vec![])
espanso-modulo/src/sys/troubleshooting/mod.rs:54:13: replace interop::OwnedErrorSet::to_error_set_metadata -> ErrorSetMetadata with Default::default()
espanso/src/cli/launcher/edition_check.rs:24:5: replace is_wrong_edition -> (bool, DetectedOS) with (false, Default::default())
espanso/src/cli/worker/engine/caches/app_info_provider.rs:36:9: replace CachedAppInfoProvider<'a>::from -> Self with Default::default()
espanso-config/src/config/store.rs:35:9: replace <impl ConfigStore for DefaultConfigStore>::default -> Arc<dyn super::Config> with Arc::new(Default::default())
espanso/src/patch/config_store.rs:89:9: replace <impl ConfigStore for PatchedConfigStore>::get_all_match_paths -> std::collections::HashSet<String> with HashSet::new()
espanso-engine/src/funnel/default.rs:36:9: replace <impl Funnel for DefaultFunnel<'_>>::receive -> FunnelResult with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![RegexMatch::from_iter([-1])]
espanso-engine/src/process/middleware/match_exec.rs:48:9: replace <impl Middleware for MatchExecRequestMiddleware<'_>>::next -> Event with Default::default()
espanso/src/cli/worker/match_cache.rs:98:9: replace CombinedMatchCache<'a>::load -> Self with Default::default()
espanso-package/src/provider/gitlab.rs:46:9: replace <impl PackageProvider for GitLabPackageProvider>::download -> Result<Box<dyn Package>> with Ok(Box::new(Default::default()))
espanso-match/src/rolling/matcher.rs:150:9: replace RollingMatcher<Id>::find_refs -> Vec<(&'a MatcherTreeRef<Id>, IsWordSeparator)> with vec![(&MatcherTreeRef::from_iter([Default::default()]), Default::default())]
espanso-config/src/config/resolve.rs:167:9: replace <impl Config for ResolvedConfig>::toggle_key -> Option<ToggleKey> with Some(Default::default())
espanso/src/config.rs:81:5: replace load_config -> Result<ConfigLoadResult> with Ok(Default::default())
espanso-modulo/src/sys/util.rs:24:5: replace convert_to_cstring_or_null -> (Option<CString>, *const c_char) with (None, Default::default())
espanso/src/cli/worker/engine/funnel/ipc.rs:50:9: replace <impl funnel::Source<'a> for IpcEventSource<'a>>::receive -> Option<Event> with Some(Default::default())
espanso/src/cli/worker/engine/process/middleware/multiplex.rs:80:5: replace convert_format -> TextFormat with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:57:9: replace MatchConverter<'a>::get_rolling_matches -> Vec<RollingMatch<i32>> with vec![RollingMatch::from(0)]
espanso-package/src/provider/github.rs:46:9: replace <impl PackageProvider for GitHubPackageProvider>::download -> Result<Box<dyn Package>> with Ok(Box::new(Default::default()))
espanso-modulo/src/sys/form/mod.rs:117:13: replace interop::<impl Interoperable for OwnedForm>::as_ptr -> *const c_void with Default::default()
espanso-config/src/error.rs:60:9: replace ErrorRecord::warn -> Self with Default::default()
espanso-render/src/renderer/resolve.rs:76:5: replace generate_nodes -> HashMap<&'a str, Node<'a>> with HashMap::from_iter([("xyzzy", Default::default())])
espanso-modulo/src/sys/form/mod.rs:240:13: replace interop::<impl Interoperable for OwnedLabelMetadata>::as_ptr -> *const c_void with Default::default()
espanso-engine/src/process/middleware/render.rs:66:9: replace <impl Middleware for RenderMiddleware<'_>>::next -> Event with Default::default()
espanso/src/lock.rs:39:9: replace Lock::acquire -> Option<Lock> with Some(Default::default())
espanso-match/src/regex/mod.rs:80:9: replace <impl Matcher<'a, RegexMatcherState, Id> for RegexMatcher<Id>>::process -> (RegexMatcherState, Vec<MatchResult<Id>>) with (Default::default(), vec![MatchResult::from_iter([Default::default()])])
espanso-detect/src/hotkey/keys.rs:218:9: replace ShortcutKey::parse -> Option<ShortcutKey> with Some(Default::default())
espanso/src/cli/worker/ui/util.rs:25:5: replace convert_icon_paths_to_tray_vec -> Vec<(TrayIcon, String)> with vec![(Default::default(), "xyzzy".into())]
espanso/src/cli/worker/config.rs:70:5: replace to_app_properties -> AppProperties with Default::default()
espanso-engine/src/process/default.rs:129:9: replace DefaultProcessor<'a>::process_one -> Option<Event> with Some(Default::default())
espanso/src/cli/worker/ipc.rs:98:5: replace send_event -> EventHandlerResponse<IPCEvent> with EventHandlerResponse::new()
espanso-modulo/src/search/algorithm.rs:103:5: replace command_filter -> Box<FilterCallback> with Box::new(Default::default())
espanso-config/src/matches/group/loader/yaml/mod.rs:129:5: replace try_convert_into_match -> Result<(Match, Vec<Warning>)> with Ok((Default::default(), vec![Default::default()]))
espanso/src/patch/config_store.rs:34:9: replace PatchedConfigStore::from_store -> Self with Default::default()
espanso-modulo/src/form/generator.rs:71:5: replace build_form -> Form with Default::default()
espanso-config/src/matches/group/path.rs:30:5: replace resolve_imports -> Result<(Vec<String>, Vec<ErrorRecord>)> with Ok((vec![String::new()], vec![Default::default()]))
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:276:5: replace calculate_casing_style -> CasingStyle with Default::default()
espanso-package/src/lib.rs:42:5: replace get_provider -> Result<Box<dyn PackageProvider>> with Ok(Box::new(Default::default()))
espanso/src/cli/worker/engine/funnel/ui.rs:50:9: replace <impl funnel::Source<'a> for UISource<'a>>::receive -> Option<Event> with Some(Default::default())
espanso-engine/src/process/middleware/discard.rs:51:9: replace <impl Middleware for EventsDiscardMiddleware>::next -> Event with Default::default()
espanso-match/src/rolling/matcher.rs:75:9: replace <impl Matcher<'a, RollingMatcherState<'a, Id>, Id> for RollingMatcher<Id>>::process -> (RollingMatcherState<'a, Id>, Vec<MatchResult<Id>>) with (RollingMatcherState::from(Default::default()), vec![MatchResult::new()])
espanso/src/cli/worker/engine/dispatch/executor/context_menu.rs:54:5: replace convert_to_ui_menu_item -> espanso_ui::menu::MenuItem with Default::default()
espanso/src/patch/config_store.rs:42:9: replace PatchedConfigStore::from_store_with_patches -> Self with Default::default()
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:57:9: replace MatchConverter<'a>::get_rolling_matches -> Vec<RollingMatch<i32>> with vec![RollingMatch::new(0)]
espanso/src/cli/worker/config.rs:120:9: replace <impl espanso_engine::dispatch::ModeProvider for ConfigManager<'_>>::active_mode -> espanso_engine::dispatch::Mode with Default::default()
espanso/src/cli/worker/engine/funnel/exit.rs:49:9: replace <impl funnel::Source<'a> for ExitSource<'a>>::receive -> Option<Event> with Some(Default::default())
espanso-config/src/lib.rs:39:5: replace load -> Result<LoadableConfig> with Ok(Default::default())
espanso/src/preferences/default.rs:44:9: replace DefaultPreferences<KVSType>::get -> Option<T> with Some(Default::default())
espanso-engine/src/process/default.rs:173:9: replace <impl Processor for DefaultProcessor<'_>>::process -> Vec<Event> with vec![Default::default()]
espanso-config/src/matches/group/loader/yaml/parse.rs:43:9: replace YAMLMatchGroup::parse_from_str -> Result<Self> with Ok(Default::default())
espanso-engine/src/process/middleware/undo.rs:53:9: replace <impl Middleware for UndoMiddleware<'_>>::next -> Event with Default::default()
espanso/src/cli/worker/ipc.rs:98:5: replace send_event -> EventHandlerResponse<IPCEvent> with EventHandlerResponse::new(Default::default())
espanso-config/src/config/store.rs:40:9: replace <impl ConfigStore for DefaultConfigStore>::active -> Arc<dyn super::Config> with Arc::new(Default::default())
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![RegexMatch::from(0)]
espanso-engine/src/process/middleware/markdown.rs:40:9: replace <impl Middleware for MarkdownMiddleware>::next -> Event with Default::default()
espanso/src/cli/worker/ui/util.rs:25:5: replace convert_icon_paths_to_tray_vec -> Vec<(TrayIcon, String)> with vec![(Default::default(), String::new())]
espanso-engine/src/process/middleware/suppress.rs:45:9: replace <impl Middleware for SuppressMiddleware<'_>>::next -> Event with Default::default()
espanso/src/cli/worker/config.rs:114:9: replace <impl super::engine::process::middleware::render::ConfigProvider<'a> for ConfigManager<'a>>::active -> (Arc<dyn Config>, MatchSet) with (Arc::new(Default::default()), Default::default())
espanso-modulo/src/sys/search/mod.rs:61:13: replace interop::<impl Interoperable for OwnedSearch>::as_ptr -> *const c_void with Default::default()
espanso-package/src/archive/read.rs:29:5: replace read_archived_package -> Result<ArchivedPackage> with Ok(Default::default())
espanso/src/cli/worker/context/default.rs:50:9: replace <impl ConfigContext for DefaultContext<'_>>::get_active_config -> Arc<dyn Config> with Arc::new(Default::default())
espanso/src/gui/modulo/search.rs:101:5: replace convert_items -> Vec<ModuloSearchItemConfig> with vec![Default::default()]
espanso-config/src/matches/group/loader/yaml/util.rs:41:5: replace convert_value -> Result<Value> with Ok(Default::default())