Skip to main content

ArgsTable

Trait ArgsTable 

Source
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§

Source

type Text: Args

CLI arguments for text fields.

Source

type Genre: Subcommand

Genre fields.

Source

type Picture: Args

CLI arguments for the picture field.

Source

type Comment: Args

CLI arguments for the comment field.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§