useclap::Parser;#[derive(Parser, Debug, Clone)]#[clap(author, version, about, long_about = None)]pubstructCli{/// Text that will bounce on the screen
#[clap(global = true)]pubtext: String,
/// Speed of text movement
#[clap(short, long, default_value_t = 24)]pubmoves_per_second:u32,
}