TO DO: will done table in signal reducing page and write controller for that page

This commit is contained in:
2024-04-18 12:23:13 +04:00
parent 37a8dfb66b
commit 6e315907bc
2 changed files with 47 additions and 10 deletions

View File

@@ -1,17 +1,13 @@
pub trait Product<B, T> {
fn builder() -> B;
fn get(self) -> T;
}
pub trait Builder<T, I, P> {
fn build(&self, build_arg: P) -> T;
fn append_item(self, item: I) -> Self;
fn append_items(self, items: Vec<I>) -> Self;
}
}