Create SfDbChannel via function

This commit is contained in:
Dominik Werder
2023-06-14 08:17:11 +02:00
parent 7c77b07db5
commit 4899d71022
20 changed files with 125 additions and 155 deletions

View File

@@ -112,7 +112,7 @@ impl BinnedQuery {
}
pub fn set_series_id(&mut self, series: u64) {
self.channel.series = Some(series);
self.channel.set_series(series);
}
pub fn channel_mut(&mut self) -> &mut SfDbChannel {

View File

@@ -127,7 +127,7 @@ impl PlainEventsQuery {
}
pub fn set_series_id(&mut self, series: u64) {
self.channel.series = Some(series);
self.channel.set_series(series);
}
pub fn set_do_test_main_error(&mut self, k: bool) {