MCPcopy Create free account
hub / github.com/ElementsProject/lightning / visit_str

Method visit_str

plugins/lsps-plugin/src/core/tlv.rs:221–224  ·  view source on GitHub ↗
(self, s: &str)

Source from the content-addressed store, hash-verified

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 }

Callers

nothing calls this directly

Calls 1

decodeFunction · 0.50

Tested by

no test coverage detected