Write a [DataValue] to a slice in little-endian byte order. # Panics: Panics if the slice does not have enough space to accommodate the [DataValue]
(&self, dst: &mut [u8])
| 188 | /// |
| 189 | /// Panics if the slice does not have enough space to accommodate the [DataValue] |
| 190 | pub fn write_to_slice_le(&self, dst: &mut [u8]) { |
| 191 | self.clone().to_le().write_to_slice_ne(dst); |
| 192 | } |
| 193 | |
| 194 | /// Read a [DataValue] from a slice using a given [Type] with native-endian byte order. |
| 195 | /// |
no test coverage detected