pub trait IsEngine: Display {
    fn is_completion(&self) -> bool { ... }
    fn is_translation(&self) -> bool { ... }
}
Expand description

Engine trait,

Provided Methods

Returns wether it is a completion engine or not.

Returns wether it is a translation engine or not.

Implementors