Enum sea_orm_cli::cli::GenerateSubcommands
source · pub enum GenerateSubcommands {
Entity {Show 20 fields
compact_format: bool,
expanded_format: bool,
include_hidden_tables: bool,
tables: Vec<String>,
ignore_tables: Vec<String>,
max_connections: u32,
output_dir: String,
database_schema: String,
database_url: String,
with_serde: String,
serde_skip_deserializing_primary_key: bool,
serde_skip_hidden_column: bool,
with_copy_enums: bool,
date_time_crate: DateTimeCrate,
lib: bool,
model_extra_derives: Vec<String>,
model_extra_attributes: Vec<String>,
enum_extra_derives: Vec<String>,
enum_extra_attributes: Vec<String>,
seaography: bool,
},
}Variants§
Entity
Trait Implementations§
source§impl Debug for GenerateSubcommands
impl Debug for GenerateSubcommands
source§impl FromArgMatches for GenerateSubcommands
impl FromArgMatches for GenerateSubcommands
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 PartialEq for GenerateSubcommands
impl PartialEq for GenerateSubcommands
source§fn eq(&self, other: &GenerateSubcommands) -> bool
fn eq(&self, other: &GenerateSubcommands) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Subcommand for GenerateSubcommands
impl Subcommand for GenerateSubcommands
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
source§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommandimpl Eq for GenerateSubcommands
impl StructuralPartialEq for GenerateSubcommands
Auto Trait Implementations§
impl RefUnwindSafe for GenerateSubcommands
impl Send for GenerateSubcommands
impl Sync for GenerateSubcommands
impl Unpin for GenerateSubcommands
impl UnwindSafe for GenerateSubcommands
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.