pub(crate) enum EntityTypesCommands {
Show 15 variants
List,
Get(EntityTypeIdArgs),
ListProperties(EntityTypeIdArgs),
ListExtensions(EntityTypeIdArgs),
ListComponents(EntityTypeIdArgs),
Create(CreateEntityTypeArgs),
Delete(EntityTypeIdArgs),
AddProperty(EntityTypeAddPropertyArgs),
RemoveProperty(EntityTypePropertyArgs),
AddExtension(EntityTypeAddExtensionArgs),
RemoveExtension(EntityExtensionTypeIdArgs),
AddComponent(EntityComponentTypeIdArgs),
RemoveComponent(EntityComponentTypeIdArgs),
UpdateDescription(EntityTypeUpdateDescriptionArgs),
JsonSchema,
}
Variants§
List
List all entity types.
Get(EntityTypeIdArgs)
Prints a single entity type.
ListProperties(EntityTypeIdArgs)
List the properties of an entity type.
ListExtensions(EntityTypeIdArgs)
List the extensions of an entity type.
ListComponents(EntityTypeIdArgs)
List the components of an entity type.
Create(CreateEntityTypeArgs)
Creates a new entity type.
Delete(EntityTypeIdArgs)
Deletes a entity type.
AddProperty(EntityTypeAddPropertyArgs)
Adds a property to an entity type.
RemoveProperty(EntityTypePropertyArgs)
Removes a property from an entity type.
AddExtension(EntityTypeAddExtensionArgs)
Adds an extension to an entity type.
RemoveExtension(EntityExtensionTypeIdArgs)
Removes an extension from an entity type.
AddComponent(EntityComponentTypeIdArgs)
Adds a component to an entity type.
RemoveComponent(EntityComponentTypeIdArgs)
Removes a component from an entity type.
UpdateDescription(EntityTypeUpdateDescriptionArgs)
Updates the description of an entity type.
JsonSchema
Prints the JSON Schema of entity types.
Trait Implementations§
Source§impl Clone for EntityTypesCommands
impl Clone for EntityTypesCommands
Source§fn clone(&self) -> EntityTypesCommands
fn clone(&self) -> EntityTypesCommands
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 EntityTypesCommands
impl Debug for EntityTypesCommands
Source§impl FromArgMatches for EntityTypesCommands
impl FromArgMatches for EntityTypesCommands
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 EntityTypesCommands
impl Subcommand for EntityTypesCommands
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 EntityTypesCommands
impl RefUnwindSafe for EntityTypesCommands
impl Send for EntityTypesCommands
impl Sync for EntityTypesCommands
impl Unpin for EntityTypesCommands
impl UnwindSafe for EntityTypesCommands
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