Format the output message based on mode.
(&self)
| 207 | |
| 208 | /// Format the output message based on mode. |
| 209 | fn format_action(&self) -> &'static str { |
| 210 | if self.keep { |
| 211 | "Untracking" |
| 212 | } else { |
| 213 | "Removing" |
| 214 | } |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | impl Default for Remove { |