cmder 0.6.1

A simple, lightweight, command line argument parser for rust codebases
Documentation
1
2
3
4
5
6
7
8
9
#![allow(unused)]

use crate::{Command, Pattern, Theme};
pub struct ErrorWriter<'help> {
    theme: Theme,
    pattern: Pattern,
    cmd: &'help Command<'help>,
    error: &'help str,
}