pub async fn query_integration<Db: ReadAccess<DbKindDht>>(
    db: &Db
) -> IntegrationStateDump
Expand description

Show the current db state.

Examples found in repository?
src/test_utils.rs (line 798)
794
795
796
797
798
799
800
801
async fn get_integration_dumps<Db: ReadAccess<DbKindDht>>(dbs: &[&Db]) -> IntegrationStateDumps {
    let mut output = Vec::new();
    for db in dbs {
        let db = *db;
        output.push(query_integration(db).await);
    }
    IntegrationStateDumps(output)
}