pub enum ScimSubcommand {
Serve(ScimServeCommand),
Quickstart(ScimQuickstartCommand),
TestConnection(ScimTestConnectionCommand),
Tenants(ScimTenantsCommand),
AddTenant(ScimAddTenantCommand),
RotateToken(ScimRotateTokenCommand),
Status(ScimStatusCommand),
}Variants§
Serve(ScimServeCommand)
Start the SCIM provisioning server (in-process, KERI-authoritative).
Quickstart(ScimQuickstartCommand)
Zero-config quickstart: generate a token and run a single-tenant server.
TestConnection(ScimTestConnectionCommand)
Validate the full SCIM pipeline: create -> get -> patch -> delete.
Tenants(ScimTenantsCommand)
List SCIM tenants (process-configured in this model).
AddTenant(ScimAddTenantCommand)
Mint a bearer token for an IdP provisioning channel.
RotateToken(ScimRotateTokenCommand)
Mint a replacement bearer token to rotate a tenant’s channel.
Status(ScimStatusCommand)
Probe a running SCIM server’s health and discovery surface.
Trait Implementations§
Source§impl Clone for ScimSubcommand
impl Clone for ScimSubcommand
Source§fn clone(&self) -> ScimSubcommand
fn clone(&self) -> ScimSubcommand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScimSubcommand
impl Debug for ScimSubcommand
Source§impl FromArgMatches for ScimSubcommand
impl FromArgMatches for ScimSubcommand
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 ScimSubcommand
impl Subcommand for ScimSubcommand
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 ScimSubcommand
impl RefUnwindSafe for ScimSubcommand
impl Send for ScimSubcommand
impl Sync for ScimSubcommand
impl Unpin for ScimSubcommand
impl UnsafeUnpin for ScimSubcommand
impl UnwindSafe for ScimSubcommand
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