Trait mentat::conn::Pullable [] [src]

pub trait Pullable {
    fn pull_attributes_for_entities<E, A>(
        &self,
        entities: E,
        attributes: A
    ) -> Result<BTreeMap<Entid, ValueRc<StructuredMap>>>
    where
        E: IntoIterator<Item = Entid>,
        A: IntoIterator<Item = Entid>
;
fn pull_attributes_for_entity<A>(
        &self,
        entity: Entid,
        attributes: A
    ) -> Result<StructuredMap>
    where
        A: IntoIterator<Item = Entid>
; }

Required Methods

Implementors