fn serialize_optional_checksum_as_hex<S, D>(
checksum: &Option<Checksum<D>>,
serializer: S,
) -> Result<S::Ok, S::Error>where
S: Serializer,
D: Digest,
Expand description
Serialize an Option<Checksum<D>>
Sadly this is needed in addition to the function above, even though we know that it won’t be
called due to the skip_serializing_if
check above.