[][src]Struct subor_rs::common_type_s_d_k_data_types::SettingCategory

pub struct SettingCategory {
    pub id: Option<String>,
    pub display: Option<String>,
    pub summary: Option<String>,
    pub description: Option<String>,
    pub icon: Option<String>,
    pub sorting_priority: Option<i32>,
    pub is_system_category: Option<bool>,
    pub items: Option<BTreeMap<String, i32>>,
    pub enable: Option<bool>,
    pub show_in_u_i: Option<bool>,
    pub script: Option<String>,
    pub tags: Option<Vec<String>>,
}

@SettingCategory_desc

Fields

id: Option<String>

@SettingCategory_id_desc

display: Option<String>

@SettingCategory_display_desc

summary: Option<String>

@SettingCategory_summary_desc

description: Option<String>

@SettingCategory_description_desc

icon: Option<String>

@SettingCategory_icon_desc

sorting_priority: Option<i32>

@SettingCategory_sortingPriority_desc

is_system_category: Option<bool>

@SettingCategory_isSystemCategory_desc

items: Option<BTreeMap<String, i32>>

@SettingCategory_items_desc

enable: Option<bool>

@SettingCategory_enable_desc

show_in_u_i: Option<bool>

@SettingCategory_showInUI_desc

script: Option<String>

@SettingCategory_script_desc

tags: Option<Vec<String>>

@SettingCategory_Tags_desc

Methods

impl SettingCategory[src]

pub fn new<F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12>(
    id: F1,
    display: F2,
    summary: F3,
    description: F4,
    icon: F5,
    sorting_priority: F6,
    is_system_category: F7,
    items: F8,
    enable: F9,
    show_in_u_i: F10,
    script: F11,
    tags: F12
) -> SettingCategory where
    F1: Into<Option<String>>,
    F2: Into<Option<String>>,
    F3: Into<Option<String>>,
    F4: Into<Option<String>>,
    F5: Into<Option<String>>,
    F6: Into<Option<i32>>,
    F7: Into<Option<bool>>,
    F8: Into<Option<BTreeMap<String, i32>>>,
    F9: Into<Option<bool>>,
    F10: Into<Option<bool>>,
    F11: Into<Option<String>>,
    F12: Into<Option<Vec<String>>>, 
[src]

pub fn read_from_in_protocol(
    i_prot: &mut dyn TInputProtocol
) -> Result<SettingCategory>
[src]

pub fn write_to_out_protocol(
    &self,
    o_prot: &mut dyn TOutputProtocol
) -> Result<()>
[src]

Trait Implementations

impl PartialEq<SettingCategory> for SettingCategory[src]

impl Clone for SettingCategory[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialOrd<SettingCategory> for SettingCategory[src]

impl Eq for SettingCategory[src]

impl Ord for SettingCategory[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Default for SettingCategory[src]

impl Debug for SettingCategory[src]

impl Hash for SettingCategory[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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