1 2 3 4 5 6 7 8 9 10
#[derive(Deserialize, Debug)] pub struct Repository { full_name: String, } impl Repository { pub fn full_name(&self) -> &str { &self.full_name } }