Trait entity::EntQuery[][src]

pub trait EntQuery: Sized {
    type Output;
    fn execute_with_db(self, db: WeakDatabaseRc) -> DatabaseResult<Self::Output>;

    fn execute(self) -> DatabaseResult<Self::Output> { ... }
}

Represents a query interface for some ent

Associated Types

Loading content...

Required methods

fn execute_with_db(self, db: WeakDatabaseRc) -> DatabaseResult<Self::Output>[src]

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

Loading content...

Provided methods

fn execute(self) -> DatabaseResult<Self::Output>[src]

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

Loading content...

Implementors

Loading content...