split_by_discriminant
split_by_discriminant is a lightweight Rust utility for partitioning a sequence of items by the discriminant of an enum.
Table of contents
- Quickstart
- Core API
- Extractor strategies
- Feature flags
- Macros companion crate
- Migration guide
- Troubleshooting
Quickstart
use ;
use discriminant;
;
let mut data = vec!;
let a_disc = discriminant;
let split = split_by_discriminant;
let mut extractor = new;
let a_values: = extractor.extract.unwrap;
assert_eq!;
Feature flags
indexmap: useIndexMap/IndexSetfor deterministic key iteration orderproc_macro: enables macros re-exported from the library to the proc-macro crate
Core API
split_by_discriminant— the simple grouping operation.map_by_discriminant— a more flexible variant that applies separate mapping closures to matched and unmatched items, allowing you to change the output types on the fly.
Both are useful when you need to gather all values of a particular variant, operate on them, and then return them to the original collection.
Reborrow vs. move semantics
Two families of methods are provided for getting items out of a group:
| Family | Methods | Semantics |
|---|---|---|
| Reborrow | extract, others |
The element stays in the map; a &mut reference into it is returned. The returned lifetime is tied to the &mut self borrow, so it cannot outlive the map itself. |
| Move (remove) | remove, remove_mapped, remove_with, take_simple, take_extracted, remove_others |
The group or others vector is removed from the map and returned by value. When G = &'items mut T the returned Vec carries the full original 'items lifetime, allowing it to outlive the map in which it was temporarily stored. |
Choose the reborrow family when you need multiple passes over the same group or when you will put the items back. Choose the move family when you want to transfer ownership of the items to a longer-lived binding.
Primary API
split_by_discriminant
Generic function that takes:
- An iterable of items (
items) whose element typeRimplementsBorrow<T>(e.g.&T,&mut T, orT). - An iterable of discriminants (
kinds) to match against; duplicates are ignored.
Returns a DiscriminantMap<T, R> containing:
entries: a map from discriminant to aVec<R>of matching items.others: aVec<R>of items whose discriminant was not requested.
Type inference normally deduces the return type; you rarely need to annotate it explicitly.
map_by_discriminant
A more flexible variant of split_by_discriminant that accepts two mapping closures.
The first closure is applied to items whose discriminant is requested, and the second
handles all others. This allows the types of grouped elements and the "others" bucket
to differ, and lets you perform on-the-fly transformations during partitioning.
DiscriminantMap<T, G, O> struct
The result of a split operation. Every parameter has a clear responsibility:
| Parameter | Role |
|---|---|
T |
The underlying enum (or any type with a Discriminant). Used to compute the map keys (Discriminant<T>) and for Borrow<T> bounds on input items. |
G |
Type stored inside each matching group. Defaults to the iterator's item type, but may be transformed by map_by_discriminant (e.g. String, &mut i32, etc.). |
O |
Type stored in the “others” bucket. Defaults to G to make the common case ergonomic, but you can choose a different type to handle unmatched items specially (e.g. map them to () or a count). |
The generic trio lets you express use cases where the group and
others types differ without resorting to enum or Box<dyn>.
Methods:
Inspection
others(&self)— borrow the unmatched items as&[O]. Takes&self; safe to call without a mutable borrow.get(&self, id)— borrow a particular group by discriminant as&[G].get_mut(&mut self, id)— mutably borrow a particular group as&mut [G].
Move (remove) — remove a group and take ownership of its elements
remove(&mut self, id)— remove and return the group asVec<G>, preserving the full original lifetime whenGis a reference.remove_mapped<U>(&mut self, id, f: FnMut(G) -> U)— remove a group and map every element throughfby value; returnsOption<Vec<U>>.remove_with<U>(&mut self, id, f: FnMut(G) -> Option<U>)— remove a group and filter-map every element throughfby value; returnsOption<Vec<U>>. Full lifetime preservation.remove_others(&mut self)— remove and return the others vector asVec<O>. Unlikeinto_parts,selfremains usable for furtherremove*calls afterward. A second call returns an emptyVec.
Consuming
into_parts(self)— consume and return(Map<Discriminant<T>, Vec<G>>, Vec<O>). The concrete map type isHashMapby default; enable theindexmapfeature forIndexMap/IndexSetinstead.map_all(self, f)— transform every group at once, consumingself.map_others(self, f)— transform the others vector, consumingself.
Extraction Traits
Three traits handle different extraction scenarios:
SimpleExtractFrom<T>— single-variant extractors with zero-annotation call siteVariantExtractFrom<T, U>— multi-variant extractors with binding-inferredUExtractFrom<T, Selector>— multi-field or complex outputs with explicit selector
See Four-Crate Pattern Guide for trait selection, implementation guidance, and decision trees. The guide covers all traits, blanket impls, and patterns for factory-crate authors.
SplitWithExtractor<T, G, O, E> struct
A thin wrapper around DiscriminantMap that pairs it with an extractor
value E. The four type parameters serve these roles:
T– the enum/Discriminanttarget, carried through from the inner split.G– group element type; forwarded fromDiscriminantMap.O– others element type; also forwarded and defaults toGwhen the split is originally constructed.E– the extractor type that implementsExtractFrom<T, S>for one or more selector typesS. The extractor is usually a zero-sized local struct; its purpose is to give you a constraint that allowsextract::<S>to disambiguate between multiple output types without a closure. Because the impl lives on your local type, the orphan rule is satisfied even whenTand the output are foreign.
With this design every parameter can vary independently and has a real use case in the docs and tests.
Methods available directly on SplitWithExtractor:
Inspection
others— forwarded from the inner split.get— forwarded from the inner split.get_mut— forwarded from the inner split.
Move (remove) — remove a group and take ownership of its elements
remove— forwarded from the inner split; full lifetime preservation.remove_mapped— forwarded from the inner split.remove_with— forwarded from the inner split.remove_others— forwarded from the inner split.take_simple(&mut self, id)— consuming counterpart ofextract_simple; requiresE: SimpleExtractFrom<T>. No turbofish, no annotation — the return type is fully determined byEandT. Returned elements carry the full'itemslifetime.take_extracted<S>(&mut self, id)— likeremove_withbut uses the bound extractor instead of a closure. RequiresE: TakeFrom<G, S>, which is satisfied automatically for anyE: ExtractFrom<T, S>whenG = &mut T.
Reborrow — borrow into a group without removing it
extract<U>(&mut self, id)— primary v0.4-style extraction; requiresE: VariantExtractFrom<T, U>.Uis inferred from the binding type on the receiving variable — no turbofish needed. Call once per variant in a separate scope so borrows do not overlap.extract_simple(&mut self, id)— fully annotation-free extraction; requiresE: SimpleExtractFrom<T>. The return type is determined entirely byEandT, so not even a binding type annotation is needed.extract_gat<S>(&mut self, id)— extraction with an explicit selector; requiresE: ExtractFrom<T, S>. Use this for multi-field outputs (tuples, named structs) or whenVariantExtractFromis not sufficient.
Consuming
into_inner(self) -> DiscriminantMap<T, G, O>— unwrap to reach consuming methods (into_parts,map_all,map_others).
Construct with SplitWithExtractor::new(split, extractor).
Four-crate Pattern
The factory crate pattern solves the Rust orphan rule for extractors on foreign enums. A factory crate defines an extractor type and implements extraction traits; downstream callers then use it without needing to implement the traits themselves.
See Four-Crate Pattern Guide for detailed guidance, decision trees, and implementation examples.
Quick example:
# use split_by_discriminant;
# use discriminant;
let mut data = vec!;
let a_disc = discriminant;
// move — returned refs carry full 'items lifetime
let ints: = ;
assert_eq!;
Examples
use ;
use discriminant;
;
let mut data = vec!;
let a_disc = discriminant;
let b_disc = discriminant;
let split = split_by_discriminant;
let mut extractor = new;
// U inferred from binding — each call lives in its own scope so &mut borrows
// do not overlap.
// Consuming methods are reached via into_inner().
let = extractor.into_inner.into_parts;
assert_eq!; // E::C
Move-style extraction with full lifetime preservation
When you need the extracted references to outlive the SplitWithExtractor,
use take_extracted:
use ;
use discriminant;
;
let mut data = ;
let a_disc = discriminant;
// ints outlives the SplitWithExtractor — full 'items lifetime preserved
let mut ints: = ;
*ints = 99;
drop;
assert_eq!;
remove_mapped — transform every element by value
use split_by_discriminant;
use discriminant;
let mut data = ;
let a_disc = discriminant;
let mut split = split_by_discriminant;
let labels: = split
.remove_mapped
.unwrap;
assert_eq!;
remove_others — retrieve unmatched items without consuming self
use split_by_discriminant;
use discriminant;
let mut data = ;
let a_disc = discriminant;
let mut split = split_by_discriminant;
// Remove the unmatched items — split remains usable.
let others: = split.remove_others;
assert_eq!; // B and C
// Groups are still intact.
let group: = split.remove.unwrap;
assert_eq!; // A(1) and A(2)
Other supported input types
You can also pass an owned iterator:
use split_by_discriminant;
use discriminant;
let owned = vec!;
let a_disc = discriminant;
let split = split_by_discriminant;
let = split.into_parts;
assert_eq!;
Or use immutable references (extraction not available on immutable refs):
use ;
use discriminant;
let data = ;
let a_disc = discriminant;
let split: = split_by_discriminant;
assert_eq!;
Use map_by_discriminant when you need to transform matched and unmatched
items during partitioning:
use map_by_discriminant;
use discriminant;
let data = ;
let a_disc = discriminant;
let b_disc = discriminant;
let mut split = map_by_discriminant;
assert_eq!;
Proc Macros
split_by_discriminant_macros provides a derive macro and helpers for extractor generation. For full API details, configuration options, and examples, see split_by_discriminant_macros/README.md.
Quickstart: #[derive(ExtractFrom)]
The derive macro generates a zero-sized extractor type named <EnumName>Extractor. Use it with SplitWithExtractor to perform extraction without manually writing an extractor type.
use ExtractFrom;
use ;
use discriminant;
let mut data = vec!;
let a_disc = discriminant;
let split = split_by_discriminant;
let mut extractor = new;
let ints: = extractor.extract.unwrap;
Customizing #[derive(ExtractFrom)] names
The derive macro supports a #[extract_from(...)] attribute to override the generated helper names.
Custom extractor name
By default #[derive(ExtractFrom)] generates a zero-sized extractor named <EnumName>Extractor.
Use:
use ExtractFrom;
Custom selector name
When the derive must generate selector types (multi-field variants or duplicate field types), the default is Select{Enum}{Variant}.
You can override it on a per-variant basis or globally via a format string.
Per-variant override:
use ExtractFrom;
Global override (format string, supports {} or {enum}/{variant}):
use ExtractFrom;
(The default format is Select{}{}, with the first {} substituted by the enum name and the second by the variant name.)
Empty enum support
By default #[derive(ExtractFrom)] on an empty enum is an error, because no extraction behavior can be generated.
You can override this with skip_empty to allow empty enums to compile as a no-op derive:
Supported inputs
&mut [T]or&mut Vec<T>→DiscriminantMap<T, &mut T>&[T]or&Vec<T>→DiscriminantMap<T, &T>- Any owning iterator, e.g.
Vec<T>::into_iter()→R = T
Features
indexmap— useIndexMap/IndexSetinstead ofHashMap/HashSet. Enables deterministic iteration order over groups.
Documentation
- Four-Crate Pattern Guide — Complete implementation guide for factory-crate authors. Covers all extraction traits, decision trees, blanket impls, and patterns.
- v0.4 to v0.5 Migration Guide — Upgrading from v0.4. Method renames and trait changes.
Notes
- Discriminants can be precomputed with
std::mem::discriminantand stored inconsts for reuse. - Items not matching any requested discriminant are preserved in
othersin original order. - The
remove_*methods work on any group element type, including owned values and immutable references. remove_othersreturnsVec<O>directly (notOption); a second call returns an emptyVec.- Source code is human written and carefully reviewed - documentation and tests AI generated to keep them up to date.
Testing
Integration tests and unit tests live in the tests/ directory alongside src/