Add dummy serialize to support channel inspect

This commit is contained in:
Dominik Werder
2025-03-26 14:28:03 +01:00
parent af546158da
commit fbce6327af

View File

@@ -119,11 +119,12 @@ mod container_bins_serde {
EVT: EventValueType,
BVT: BinAggedType,
{
fn serialize<S>(&self, _ser: S) -> Result<S::Ok, S::Error>
fn serialize<S>(&self, ser: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
todo!()
let selfname = std::any::type_name::<Self>();
ser.serialize_str(&format!("TODO({})", selfname))
}
}