pub enum ConfluenceSubcommands {
Comment(CommentCommand),
Read(ReadCommand),
Write(WriteCommand),
Edit(EditCommand),
Search(SearchCommand),
Create(CreateCommand),
Delete(DeleteCommand),
Label(LabelCommand),
Download(DownloadCommand),
User(UserCommand),
}Expand description
Confluence subcommands.
Variants§
Comment(CommentCommand)
Manages comments on a Confluence page.
Read(ReadCommand)
Fetches a Confluence page and outputs it as JFM markdown or ADF JSON.
Write(WriteCommand)
Pushes content to a Confluence page.
Edit(EditCommand)
Interactive fetch-edit-push cycle for a Confluence page.
Search(SearchCommand)
Searches Confluence pages using CQL.
Create(CreateCommand)
Creates a new Confluence page.
Delete(DeleteCommand)
Deletes a Confluence page.
Label(LabelCommand)
Manages labels on Confluence pages.
Download(DownloadCommand)
Recursively downloads a Confluence page tree.
User(UserCommand)
Confluence user operations.
Trait Implementations§
Source§impl FromArgMatches for ConfluenceSubcommands
impl FromArgMatches for ConfluenceSubcommands
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 ConfluenceSubcommands
impl Subcommand for ConfluenceSubcommands
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
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for ConfluenceSubcommands
impl RefUnwindSafe for ConfluenceSubcommands
impl Send for ConfluenceSubcommands
impl Sync for ConfluenceSubcommands
impl Unpin for ConfluenceSubcommands
impl UnsafeUnpin for ConfluenceSubcommands
impl UnwindSafe for ConfluenceSubcommands
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more