Validate that multiple strings are not empty after trimming. # Arguments `values` - Slice of (value, field_name) pairs to validate. # Returns `Ok(())` if all valid, `Err` if any is empty.
(values: &[(&str, &str)])
| 64 | /// # Returns |
| 65 | /// `Ok(())` if all valid, `Err` if any is empty. |
| 66 | fn validate_non_empty_multi(values: &[(&str, &str)]) -> Result<()> { |
| 67 | for (value, field_name) in values { |
| 68 | validate_non_empty(value, field_name)?; |
| 69 | } |
| 70 | Ok(()) |
| 71 | } |
| 72 | |
| 73 | /// REST API wrapper for Paimon catalog operations. |
| 74 | /// |
no test coverage detected