If the `Value` is a Vec , returns the associated Vec . Returns None otherwise.
(&self)
| 550 | /// If the `Value` is a Vec<String>, returns the associated Vec<String>. |
| 551 | /// Returns None otherwise. |
| 552 | pub fn as_str_arr(&self) -> Option<&Vec<String>> { |
| 553 | match self { |
| 554 | Value::StringArray(sa) => Some(sa), |
| 555 | _ => None, |
| 556 | } |
| 557 | } |
| 558 | |
| 559 | /// Returns true if the `Value` is a Vec<i64>. Returns false otherwise. |
| 560 | /// |
no outgoing calls
no test coverage detected