aboutsummaryrefslogtreecommitdiff
path: root/mingling_picker/src/picker/result.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-17 11:08:07 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-17 11:11:28 +0800
commit79ec6878877f0fd9246d67d3cd4f8cc2d1200150 (patch)
treee3cd8cfc7ef5cd2a6a7ceb93d9a4b1764fa21b61 /mingling_picker/src/picker/result.rs
parente6136f22cff446b16dbebf3b26a6fdea6dbc0e83 (diff)
refactor: rename `mingling_picker` to `arg_picker`
Diffstat (limited to 'mingling_picker/src/picker/result.rs')
-rw-r--r--mingling_picker/src/picker/result.rs56
1 files changed, 0 insertions, 56 deletions
diff --git a/mingling_picker/src/picker/result.rs b/mingling_picker/src/picker/result.rs
deleted file mode 100644
index 9cd78ae..0000000
--- a/mingling_picker/src/picker/result.rs
+++ /dev/null
@@ -1,56 +0,0 @@
-#![allow(clippy::type_complexity)] // Aha, Type Gymnastics!
-
-use mingling_picker_macros::internal_repeat;
-
-internal_repeat!(1..=32 => {
- #[doc(hidden)]
- pub struct PickerResult$<(T$,+), Route> {
- /// The route selected by the picker, if any.
- /// If this is `Some`, the picker chose to follow a route instead of selecting values,
- /// and all value fields (`v1`, `v2`, ...) will be `None`.
- ///
- /// Note: "route" here refers to an alternative path/choice, not a network route.
- pub route: Option<Route>,
-
- (
- #[doc = concat!("The optional value for the ", $, "th type parameter.")]
- pub v$: Option<T$>,
- +)
- }
-});
-
-internal_repeat!(1..=32 => {
- impl<(T$,+), Route> PickerResult$<(T$,+), Route> {
- /// Unwraps the result, panicking if a route was selected.
- ///
- /// # Panics
- ///
- /// Panics if `self.route` is `Some(...)`.
- pub fn unwrap(self) -> ((T$,+)) {
- ((self.v$.unwrap(),+))
- }
-
- /// Returns the individual option values without checking the route.
- pub fn unpack(self) -> ((Option<T$>,+)) {
- ((self.v$,+))
- }
-
- /// Converts to a `Result`, returning `Err(route)` if a route was selected,
- /// or `Ok(values)` otherwise.
- pub fn to_result(self) -> Result<((T$,+)), Route> {
- if let Some(r) = self.route {
- return Err(r);
- }
- Ok(self.unwrap())
- }
-
- /// Converts to an `Option`, returning `None` if a route was selected,
- /// or `Some(values)` otherwise.
- pub fn to_option(self) -> Option<((T$,+))> {
- if let Some(_) = self.route {
- return None;
- }
- Some(self.unwrap())
- }
- }
-});