Returns true if the `Value` is a Vec . Returns false otherwise. For any Value on which `is_str_arr` returns true, `as_str_arr` is guaranteed to return the Vec value.
(&self)
| 544 | /// For any Value on which `is_str_arr` returns true, `as_str_arr` is |
| 545 | /// guaranteed to return the Vec<String> value. |
| 546 | pub fn is_str_arr(&self) -> bool { |
| 547 | self.as_str_arr().is_some() |
| 548 | } |
| 549 | |
| 550 | /// If the `Value` is a Vec<String>, returns the associated Vec<String>. |
| 551 | /// Returns None otherwise. |
nothing calls this directly
no test coverage detected