pub trait ResQuery {
    type Fetch: ResAccess;

    fn fetch(universe: &Universe) -> Self::Fetch;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors