Enum vervolg::schema::SchemaObject [] [src]

pub enum SchemaObject {
    File(File),
    Table(Table),
    View(View),
}

currently, the only schema object types we support are tables and views

Variants

an external CSV file

a table object (in-memory B-Tree)

a view object (query short-cut)

Trait Implementations

impl Debug for SchemaObject
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SchemaObject

impl Sync for SchemaObject