This commit is contained in:
Dominik Werder
2021-05-25 23:41:22 +02:00
parent 83adaa7321
commit 9751660118
17 changed files with 438 additions and 349 deletions

View File

@@ -28,7 +28,7 @@ pub trait Collected {
pub trait Collectable {
type Collected: Collected;
fn append_to(&mut self, collected: &mut Self::Collected);
fn append_to(&self, collected: &mut Self::Collected);
}
pub trait ToJsonResult {