(deserializer: D)
| 723 | { |
| 724 | #[inline(always)] |
| 725 | fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> |
| 726 | where |
| 727 | D: serde::Deserializer<'de>, |
| 728 | { |
| 729 | Ok(Self(Z::deserialize(deserializer)?)) |
| 730 | } |
| 731 | } |
| 732 | |
| 733 | /// Perform a volatile write to the destination |
nothing calls this directly
no test coverage detected