blob: 1d6a1ef8a4b4cfde2a1170b0dec0e3d6fd0d113a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
use typed_builder::TypedBuilder;
#[derive(Debug, Clone, PartialEq, Eq, TypedBuilder)]
pub struct KvEntry {
pub namespace: String,
pub key: String,
pub value: String,
}
|