pub trait AppSpec {
    fn homepage(&self) -> String;
    fn name(&self) -> String;

    fn slug(&self) -> String { ... }
}

Required Methods

Provided Methods

Implementors