Enum adapton::engine::Engine [] [src]

pub enum Engine {
    DCG(RefCell<DCG>),
    Naive,
}

The engine API works in two modes: Naive and DCG. A Naive engine is stateless, whereas the DCG is stateful.

Variants

Trait Implementations

impl Debug for Engine
[src]

[src]

Formats the value using the given formatter.

impl Clone for Engine
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more