Trait mentat_core::UpdateableCache [] [src]

pub trait UpdateableCache {
    type Error;
    fn update<I>(
        &mut self,
        schema: &Schema,
        retractions: I,
        assertions: I
    ) -> Result<(), Self::Error>
    where
        I: Iterator<Item = (Entid, Entid, TypedValue)>
; }

Associated Types

Required Methods

Implementors