diff options
Diffstat (limited to 'mingling_picker/src/lib.rs')
| -rw-r--r-- | mingling_picker/src/lib.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mingling_picker/src/lib.rs b/mingling_picker/src/lib.rs index bee2c50..7e48db7 100644 --- a/mingling_picker/src/lib.rs +++ b/mingling_picker/src/lib.rs @@ -1,3 +1,5 @@ +mod builtin; + mod picker; pub use picker::*; @@ -20,6 +22,17 @@ pub mod macros { pub use mingling_picker_macros::*; } +/// Provides the types necessary for implementing the `Pickable` trait +pub mod pickable_needed { + pub use crate::{Pickable, PickerArgResult, PickerFlag, PickerFlagAttr, TagPhaseContext}; +} + +/// Provides the types necessary for implementing the `Matcher` trait +pub mod matcher_needed { + pub use crate::PickerArgInfo; + pub use crate::parselib::{MaskedArg, Matcher, ParserStyle}; +} + #[cfg(feature = "mingling_support")] mod corebind; |
