Extract items from a list response
(&self)
| 360 | |
| 361 | /// Extract items from a list response |
| 362 | pub fn items(&self) -> Option<&[Value]> { |
| 363 | match self { |
| 364 | Self::List { items } => Some(items), |
| 365 | _ => None, |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | /// Extract results from a query response |
| 370 | pub fn results(&self) -> Option<&Value> { |
no outgoing calls
no test coverage detected