Struct diwata_intel::window::Window[][src]

pub struct Window {
    pub name: String,
    pub description: Option<String>,
    pub group: Option<String>,
    pub main_tab: Tab,
    pub has_one_tabs: Vec<Tab>,
    pub one_one_tabs: Vec<Tab>,
    pub has_many_tabs: Vec<Tab>,
    pub indirect_tabs: Vec<(TableName, Tab)>,
    pub is_view: bool,
}

Fields

maps to main table name

maps to table comment

group name where this window comes from maps to table schema

corresponds to the main table

table names that is referred by fields from the main table the first page of it is retrieved

this record is linked 1:1 to this record and the table that contains that record is owned in this window and edited here

the tabs that refers to the selected record 1:M

an indirect connection to this record must have an option to remove/show from the list async loaded?

Methods

impl Window
[src]

Trait Implementations

impl Debug for Window
[src]

Formats the value using the given formatter. Read more

impl Clone for Window
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Window

impl Sync for Window