Enum sea_orm_cli::cli::GenerateSubcommands
source · [−]pub enum GenerateSubcommands {
Entity {
compact_format: bool,
expanded_format: bool,
include_hidden_tables: bool,
tables: Option<String>,
ignore_tables: Vec<String>,
max_connections: u32,
output_dir: String,
database_schema: String,
database_url: String,
with_serde: String,
with_copy_enums: bool,
date_time_crate: DateTimeCrate,
},
}Variants
Entity
Fields
compact_format: boolexpanded_format: boolmax_connections: u32output_dir: Stringdatabase_schema: Stringdatabase_url: Stringwith_serde: Stringwith_copy_enums: booldate_time_crate: DateTimeCrateTrait Implementations
sourceimpl Debug for GenerateSubcommands
impl Debug for GenerateSubcommands
sourceimpl FromArgMatches for GenerateSubcommands
impl FromArgMatches for GenerateSubcommands
sourcefn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
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>
Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
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 PartialEq<GenerateSubcommands> for GenerateSubcommands
impl PartialEq<GenerateSubcommands> for GenerateSubcommands
sourcefn 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 ==. Read more
sourceimpl Subcommand for GenerateSubcommands
impl Subcommand for GenerateSubcommands
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 subcommand
impl Eq for GenerateSubcommands
impl StructuralEq 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more