pub trait License {
    fn notice(&self, year: u32, name: &str, project: &str) -> String;
}

Required methods

Implementors