(&self, size: usize)
| 286 | /// Check if a file size exceeds the maximum. |
| 287 | #[must_use] |
| 288 | pub fn exceeds_max_size(&self, size: usize) -> bool { |
| 289 | self.max_file_size.is_some_and(|max| size > max) |
| 290 | } |
| 291 | |
| 292 | /// Convert to graph_op build options. |
| 293 | #[must_use] |
no outgoing calls
no test coverage detected