pub(crate) enum RelationInstancesCommands {
Show 13 variants
List(SearchRelationInstancesArgs),
Get(RelationInstanceIdArgs),
ListProperties(RelationInstanceIdArgs),
GetProperty(RelationInstanceIdAndPropertyArgs),
SetProperty(SetPropertyArgs),
AddProperty(AddPropertyArgs),
RemoveProperty(RelationInstanceIdAndPropertyArgs),
ListComponents(RelationInstanceIdArgs),
AddComponent(RelationInstanceIdAndComponentArgs),
RemoveComponent(RelationInstanceIdAndComponentArgs),
Create(CreateRelationInstanceArgs),
Delete(RelationInstanceIdArgs),
JsonSchema,
}
Variants§
List(SearchRelationInstancesArgs)
List all relation instances.
Get(RelationInstanceIdArgs)
Prints a single relation instance.
ListProperties(RelationInstanceIdArgs)
Lists the properties of a relation instance.
GetProperty(RelationInstanceIdAndPropertyArgs)
Prints the value of a property of a relation instance.
SetProperty(SetPropertyArgs)
Sets the value of a property of a relation instance.
AddProperty(AddPropertyArgs)
Adds a new property to a relation instance.
RemoveProperty(RelationInstanceIdAndPropertyArgs)
Removes a property from a relation instance.
ListComponents(RelationInstanceIdArgs)
Lists the components of a relation instance.
AddComponent(RelationInstanceIdAndComponentArgs)
Adds a component to a relation instance.
RemoveComponent(RelationInstanceIdAndComponentArgs)
Removes a component from a relation instance.
Create(CreateRelationInstanceArgs)
Creates a new relation type.
Delete(RelationInstanceIdArgs)
JsonSchema
Prints the JSON Schema of relation instances.
Trait Implementations§
Source§impl Clone for RelationInstancesCommands
impl Clone for RelationInstancesCommands
Source§fn clone(&self) -> RelationInstancesCommands
fn clone(&self) -> RelationInstancesCommands
Returns a copy of the value. Read more
1.0.0 · 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 RelationInstancesCommands
impl Debug for RelationInstancesCommands
Source§impl FromArgMatches for RelationInstancesCommands
impl FromArgMatches for RelationInstancesCommands
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 RelationInstancesCommands
impl Subcommand for RelationInstancesCommands
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 RelationInstancesCommands
impl RefUnwindSafe for RelationInstancesCommands
impl Send for RelationInstancesCommands
impl Sync for RelationInstancesCommands
impl Unpin for RelationInstancesCommands
impl UnwindSafe for RelationInstancesCommands
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
§impl<T> CloneAny for T
impl<T> CloneAny for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more