Trait entity::EntQuery[][src]

pub trait EntQuery {
    type Output;
    fn execute<D: Database>(self, database: &D) -> DatabaseResult<Self::Output>;
}

Represents a query interface for some ent

Associated Types

Loading content...

Required methods

fn execute<D: Database>(self, database: &D) -> DatabaseResult<Self::Output>[src]

Executes the query against the provided database, returning the query’s output as the result

Loading content...

Implementors

impl EntQuery for Query[src]

type Output = Vec<Box<dyn Ent>>

Loading content...