Struct vervolg::schema::View [] [src]

pub struct View {
    pub name: String,
    pub rows: RowSet,
    pub query: String,
}

Description of a table within the database

Fields

the name of the view

description of the data rows that are stored in this table

description of the query used to generate the view (ultimately, this should be an AST)

Trait Implementations

impl Debug for View
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for View

impl Sync for View