h10 0.6.14

Simple HTTP/1.0 Server
Documentation
1
2
3
4
5
6
7
8
9
10
use super::traits::ArgName;

#[derive(Debug, Default, PartialEq, Eq)]
pub(crate) struct CliHelp;

impl ArgName for CliHelp {
    fn arg_name() -> String {
        "--help".into()
    }
}