(&self)
| 1260 | } |
| 1261 | |
| 1262 | fn stringify(&self) -> String { |
| 1263 | match *self { |
| 1264 | List::Cons(head, ref tail) => format!("{}, {}", head, tail.stringify()), |
| 1265 | List::Nil => format!("Nil") |
| 1266 | } |
| 1267 | } |
| 1268 | } |
| 1269 | |
| 1270 | let mut list = List::new(); |
nothing calls this directly
no outgoing calls
no test coverage detected