Enum codeberg_cli::cli::pull_request::PullRequestArgs
source · pub enum PullRequestArgs {
List(ListPullRequestArgs),
Create(CreatePullRequestArgs),
Edit(EditPullRequestArgs),
View(ViewPullRequestsArgs),
Comment(CommentPullRequestArgs),
}
Expand description
Pull request subcommands
Variants§
List(ListPullRequestArgs)
Create(CreatePullRequestArgs)
Edit(EditPullRequestArgs)
View(ViewPullRequestsArgs)
Comment(CommentPullRequestArgs)
Trait Implementations§
source§impl Debug for PullRequestArgs
impl Debug for PullRequestArgs
source§impl FromArgMatches for PullRequestArgs
impl FromArgMatches for PullRequestArgs
source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches ) -> Result<Self, Error>
source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.source§impl Subcommand for PullRequestArgs
impl Subcommand for PullRequestArgs
source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
source§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self
can parse a specific subcommand