[][src]Trait entity::EntQuery

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

Represents a query interface for some ent

Associated Types

Loading content...

Required methods

pub 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...