pub trait Module {
    type Clients;

    // Required method
    fn create(&self, client: Self::Clients) -> Controllers;
}

Required Associated Types§

Required Methods§

source

fn create(&self, client: Self::Clients) -> Controllers

Implementors§