Write a [DataValue] to a slice in big-endian byte order. # Panics: Panics if the slice does not have enough space to accommodate the [DataValue]
(&self, dst: &mut [u8])
| 179 | /// |
| 180 | /// Panics if the slice does not have enough space to accommodate the [DataValue] |
| 181 | pub fn write_to_slice_be(&self, dst: &mut [u8]) { |
| 182 | self.clone().to_be().write_to_slice_ne(dst); |
| 183 | } |
| 184 | |
| 185 | /// Write a [DataValue] to a slice in little-endian byte order. |
| 186 | /// |
no test coverage detected