From f27f5aeb09616b932ab48f0905994879dd8bafe5 Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Sun, 17 May 2026 22:30:50 +0800 Subject: Rename `NextProcess` to `Next` across the codebase --- mling/src/cli/list.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mling/src/cli/list.rs') 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::("--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), -- cgit