parkour 0.1.0

A fast, extensible command-line arguments parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module contains the implementations of the [`crate::FromInput`] and
//! [`crate::FromInputValue`] traits.

mod array;
mod bool;
mod char;
mod list;
mod numbers;
mod string;
mod tuple;
mod wrappers;

pub use list::ListCtx;
pub use numbers::NumberCtx;
pub use string::StringCtx;