(&self)
| 222 | } |
| 223 | |
| 224 | pub fn to_string(&self) -> String { |
| 225 | let mut s = String::new(); |
| 226 | s = s + "1;\n"; |
| 227 | for j in &self.buf { |
| 228 | s = s + &j + ";\n"; |
| 229 | } |
| 230 | s |
| 231 | } |
| 232 | |
| 233 | pub fn write(&self, filename: &str) -> Result<()> { |
| 234 |
no outgoing calls
no test coverage detected