pub enum DisableService {
OnePass(DisableArgs),
Discord(DisableArgs),
Gcal(DisableArgs),
Slack(DisableArgs),
Spotify(DisableArgs),
Telegram(DisableArgs),
Ymusic(DisableArgs),
}Variants§
OnePass(DisableArgs)
Disable the 1Password service in the current project.
Discord(DisableArgs)
Disable the Discord service in the current project.
Gcal(DisableArgs)
Disable the Google Calendar service in the current project.
Slack(DisableArgs)
Disable the Slack service in the current project.
Spotify(DisableArgs)
Disable the Spotify service in the current project.
Telegram(DisableArgs)
Disable the Telegram service in the current project.
Ymusic(DisableArgs)
Disable the YouTube Music service in the current project.
Trait Implementations§
Source§impl Debug for DisableService
impl Debug for DisableService
Source§impl FromArgMatches for DisableService
impl FromArgMatches for DisableService
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 DisableService
impl Subcommand for DisableService
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 DisableService
impl RefUnwindSafe for DisableService
impl Send for DisableService
impl Sync for DisableService
impl Unpin for DisableService
impl UnsafeUnpin for DisableService
impl UnwindSafe for DisableService
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