1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::cli_wrapper;
use clap::ValueEnum;
use rudof_lib::formats::NodeInspectionMode;
use std::fmt::{Display, Formatter, Result};

cli_wrapper!(
    NodeInspectionModeCli,
    NodeInspectionMode,
    {
        Outgoing,
        Incoming,
        Both,
    }
);