diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-14 19:43:56 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-14 19:51:19 +0800 |
| commit | fdd26053228593162fd5c41df9cfbc45d0c731b9 (patch) | |
| tree | c8782756a80d8fadf681ead52b4e512d4a1b2a9d /mingling_picker/src/picker/parse.rs | |
| parent | 538516a2104edba2c35b1f4ce40ec5a25589b62b (diff) | |
feat: add lifetime-bound pickable support and refine type constraints
Diffstat (limited to 'mingling_picker/src/picker/parse.rs')
| -rw-r--r-- | mingling_picker/src/picker/parse.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mingling_picker/src/picker/parse.rs b/mingling_picker/src/picker/parse.rs index defbcbf..f69e078 100644 --- a/mingling_picker/src/picker/parse.rs +++ b/mingling_picker/src/picker/parse.rs @@ -7,7 +7,7 @@ internal_repeat!(1..=32 => { internal_repeat!(1..=32 => { impl<'a, (T$,+)> PickerPattern$<'a, (T$,+)> - where (T$: Pickable + Default,+) + where (T$: Pickable<'a> + Default,+) { #[allow(clippy::type_complexity)] pub fn parse(self) -> PickerResult<((T$,+))> { |
