1 2 3 4 5 6 7 8 9
#[derive(Debug)] #[derive(Clone)] pub struct Routes<'a> { // GET / HTTP/1.1 pub method: &'a str, pub route: &'a str, pub response: &'a str, }