reduct-base 1.19.9

Base crate for ReductStore
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2021-2026 ReductSoftware UG
// Licensed under the Apache License, Version 2.0

use std::collections::HashMap;

pub mod batch;
pub mod error;
pub mod msg;

#[cfg(feature = "io")]
pub mod io;

#[cfg(feature = "ext")]
pub mod ext;
pub mod logger;

pub type Labels = HashMap<String, String>;