Enum kanidm_cli::AccountCredential
source · [−]pub enum AccountCredential {
Status(AccountNamedOpt),
Update(AccountNamedOpt),
UseResetToken(UseResetTokenOpt),
CreateResetToken(AccountNamedOpt),
}
Variants
Status(AccountNamedOpt)
Show the status of this accounts credentials.
Update(AccountNamedOpt)
Interactively update/change the credentials for an account
UseResetToken(UseResetTokenOpt)
Using a reset token, interactively reset credentials for a user
CreateResetToken(AccountNamedOpt)
Create a reset token that can be given to another person so they can recover or reset their account credentials.
Implementations
Trait Implementations
sourceimpl Debug for AccountCredential
impl Debug for AccountCredential
sourceimpl FromArgMatches for AccountCredential
impl FromArgMatches for AccountCredential
sourcefn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
sourcefn 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>
sourcefn 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
.sourcefn 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
.sourceimpl Subcommand for AccountCredential
impl Subcommand for AccountCredential
sourcefn augment_subcommands<'b>(__clap_app: Command<'b>) -> Command<'b>
fn augment_subcommands<'b>(__clap_app: Command<'b>) -> Command<'b>
sourcefn augment_subcommands_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>
fn augment_subcommands_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>
sourcefn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self
can parse a specific subcommandAuto Trait Implementations
impl RefUnwindSafe for AccountCredential
impl Send for AccountCredential
impl Sync for AccountCredential
impl Unpin for AccountCredential
impl UnwindSafe for AccountCredential
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more