pub trait ArgsTable {
    type Text: Args;
    type Genre: Subcommand;
    type Picture: Args;
    type Comment: Args;
}
Expand description

Table of Args types to used in Field.

Required Associated Types

CLI arguments for text fields.

Genre fields.

CLI arguments for the picture field.

CLI arguments for the comment field.

Implementors