(&self, size: usize)
| 246 | /// Check if a file size exceeds the maximum. |
| 247 | #[must_use] |
| 248 | pub fn exceeds_max_size(&self, size: usize) -> bool { |
| 249 | self.max_file_size.is_some_and(|max| size > max) |
| 250 | } |
| 251 | |
| 252 | /// Convert to graph_op build options. |
| 253 | #[must_use] |
no outgoing calls
no test coverage detected