(&self)
| 265 | /// Vector of bytes or None. |
| 266 | #[cfg_attr(not(feature = "py-binding"), allow(dead_code))] |
| 267 | fn get_bytes(&self) -> Option<Vec<u8>> { |
| 268 | self.access(|bytes| Ok(Some(bytes.to_vec())), |_sub_values| Ok(None)) |
| 269 | .unwrap() |
| 270 | } |
| 271 | |
| 272 | /// Returns vector of Value if the value is vector of pointers to other values else returns None. |
| 273 | /// |
no test coverage detected