Prepare for merge of retention times

This commit is contained in:
Dominik Werder
2024-06-15 09:49:07 +02:00
parent 902b9a9cb7
commit 3a77d116f6
13 changed files with 896 additions and 47 deletions

View File

@@ -77,6 +77,15 @@ impl NanoRange {
}
}
impl From<(u64, u64)> for NanoRange {
fn from(value: (u64, u64)) -> Self {
Self {
beg: value.0,
end: value.1,
}
}
}
impl TryFrom<&SeriesRange> for NanoRange {
type Error = Error;