(value: &ConstantData)
| 64 | type Error = <[u8; 16] as TryFrom<&'static [u8]>>::Error; |
| 65 | |
| 66 | fn try_from(value: &ConstantData) -> Result<Self, Self::Error> { |
| 67 | Ok(Ieee128::with_bits(u128::from_le_bytes( |
| 68 | value.as_slice().try_into()?, |
| 69 | ))) |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | impl ConstantData { |