Add data columns by root sync request (#6274)

* Add data columns by root sync request
This commit is contained in:
Lion - dapplion
2024-08-21 02:12:38 +02:00
committed by GitHub
parent 56d1c8c96f
commit 677f96a333
5 changed files with 287 additions and 32 deletions

View File

@@ -212,3 +212,9 @@ impl slog::Value for RequestId {
}
}
}
impl std::fmt::Display for DataColumnsByRootRequestId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}