Struct mango_orm::models::Meta[][src]

pub struct Meta {
    pub model_name: String,
    pub project_name: String,
    pub unique_project_key: String,
    pub service_name: String,
    pub database_name: String,
    pub db_client_name: String,
    pub db_query_docs_limit: u32,
    pub collection_name: String,
    pub fields_count: usize,
    pub fields_name: Vec<String>,
    pub is_add_docs: bool,
    pub is_up_docs: bool,
    pub is_del_docs: bool,
    pub map_field_type: HashMap<String, String>,
    pub map_widget_type: HashMap<String, String>,
    pub map_default_values: HashMap<String, (String, String)>,
    pub ignore_fields: Vec<String>,
}

Fields

model_name: Stringproject_name: Stringunique_project_key: Stringservice_name: Stringdatabase_name: Stringdb_client_name: Stringdb_query_docs_limit: u32collection_name: Stringfields_count: usizefields_name: Vec<String>is_add_docs: boolis_up_docs: boolis_del_docs: boolmap_field_type: HashMap<String, String>map_widget_type: HashMap<String, String>map_default_values: HashMap<String, (String, String)>ignore_fields: Vec<String>

Trait Implementations

impl Clone for Meta[src]

impl Debug for Meta[src]

impl Default for Meta[src]

impl<'de> Deserialize<'de> for Meta[src]

Auto Trait Implementations

impl RefUnwindSafe for Meta

impl Send for Meta

impl Sync for Meta

impl Unpin for Meta

impl UnwindSafe for Meta

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,