Set whether to include hidden files. # Arguments `include` - Whether to include files starting with '.' # Example ```rust use atomic_core::output::repo::TreeCollectOptions; let opts = TreeCollectOptions::new().include_hidden(false); assert!(!opts.include_hidden); ```
(mut self, include: bool)
| 189 | /// assert!(!opts.include_hidden); |
| 190 | /// ``` |
| 191 | pub fn include_hidden(mut self, include: bool) -> Self { |
| 192 | self.include_hidden = include; |
| 193 | self |
| 194 | } |
| 195 | |
| 196 | /// Set the maximum traversal depth. |
| 197 | /// |
no outgoing calls