(value: Option<&String>)
| 1252 | } |
| 1253 | |
| 1254 | fn is_blank_text(value: Option<&String>) -> bool { |
| 1255 | value.map(|s| s.trim().is_empty()).unwrap_or(true) |
| 1256 | } |
| 1257 | |
| 1258 | fn resolve_missing_image_payloads( |
| 1259 | image_contexts: Vec<ImageContextData>, |
no test coverage detected