mylang_cli_ext/
matches.rs

1
2
3
4
5
6
7
8
use clap::Parser;

pub trait MatchesFromParser<P>
where
    P: Parser,
{
    fn parse(&self) -> P;
}