(self, s: &str)
| 219 | write!(f, "a hex string representing a Lightning TLV stream") |
| 220 | } |
| 221 | fn visit_str<E: DeError>(self, s: &str) -> std::result::Result<Self::Value, E> { |
| 222 | let bytes = hex::decode(s).map_err(E::custom)?; |
| 223 | TlvStream::from_bytes_auto(&bytes).map_err(E::custom) |
| 224 | } |
| 225 | } |
| 226 | deserializer.deserialize_str(V) |
| 227 | } |