getopt 1.1.9

A minimal, (essentially) POSIX-compliant option parser
Documentation
1
2
3
4
5
6
7
8
/// What kinds of errors [`Parser`](struct.Parser.html) can return.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum ErrorKind {
    /// An argument was not found for an option that was expecting one.
    MissingArgument,
    /// An unknown option character was encountered.
    UnknownOption,
}