diff options
| author | Weicao-CatilGrass <1992414357@qq.com> | 2026-05-17 22:30:50 +0800 |
|---|---|---|
| committer | Weicao-CatilGrass <1992414357@qq.com> | 2026-05-17 22:38:39 +0800 |
| commit | f27f5aeb09616b932ab48f0905994879dd8bafe5 (patch) | |
| tree | 2deea67f7ed910ad824fbcce2330ab5c475e51a0 /mling/src/cli/list.rs | |
| parent | bdd736ad9899aed74aaa2760c6e068dcae0e6925 (diff) | |
Rename `NextProcess` to `Next` across the codebase
Diffstat (limited to 'mling/src/cli/list.rs')
| -rw-r--r-- | mling/src/cli/list.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mling/src/cli/list.rs b/mling/src/cli/list.rs index 49712b8..3ae9ef6 100644 --- a/mling/src/cli/list.rs +++ b/mling/src/cli/list.rs @@ -32,7 +32,7 @@ pub(crate) enum StateListInstalledOptions { pack!(MutexErrorListInstalled = ()); #[chain] -pub(crate) fn handle_list_installed_entry(prev: ListInstalledEntry) -> NextProcess { +pub(crate) fn handle_list_installed_entry(prev: ListInstalledEntry) -> Next { let picker = Picker::new(prev.inner); let r = picker .pick::<bool>("--trusted") @@ -64,7 +64,7 @@ pub(crate) struct ResultInstalledNamespaces { } #[chain] -pub(crate) fn handle_state_list_installed_option(prev: StateListInstalledOptions) -> NextProcess { +pub(crate) fn handle_state_list_installed_option(prev: StateListInstalledOptions) -> Next { ResultInstalledNamespaces { trusted: list_namespaces(true, false, false), untrusted: list_namespaces(false, true, false), |
