Trait mentat_ffi::BuildTerms []

pub trait BuildTerms {
    fn named_tempid(&mut self, name: String) -> Rc<TempId>;
fn describe_tempid(self, name: &str) -> EntityBuilder<Self>;
fn describe<E>(self, entity: E) -> EntityBuilder<Self>
    where
        E: IntoThing<Either<KnownEntid, Rc<TempId>>>
;
fn add<E, V>(&mut self, e: E, a: KnownEntid, v: V) -> Result<(), Error>
    where
        E: IntoThing<Either<KnownEntid, Rc<TempId>>>,
        V: IntoThing<Either<TypedValue, Rc<TempId>>>
;
fn retract<E, V>(&mut self, e: E, a: KnownEntid, v: V) -> Result<(), Error>
    where
        E: IntoThing<Either<KnownEntid, Rc<TempId>>>,
        V: IntoThing<Either<TypedValue, Rc<TempId>>>
; }

Required Methods

Implementations on Foreign Types

impl BuildTerms for TermBuilder

Implementors