Model

Trait Model 

Source
pub trait Model {
    type Predicate: Predicate<Model = Self>;
    type Storage;
}
Expand description

Model that queries can run against.

Required Associated Types§

Source

type Predicate: Predicate<Model = Self>

The predicates that can be evaluated against the model.

Source

type Storage

The storage format for variables.

Implementors§