summaryrefslogtreecommitdiffstats
path: root/src/collection_builder.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-04-24 13:29:40 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-04-24 13:29:40 +0200
commit7508b40ffb4e11f048438decb78a33eb1d11a577 (patch)
treea908fe83d476502f86869eea662bdaa7d154ce55 /src/collection_builder.rs
parenta834f3c5eb10de3dbc1fb51d017cbee4483830ff (diff)
parent851a1adf02093cdb094f85978bc1433fd18a28ec (diff)
Merge branch 'vec-support' into vec-example
Diffstat (limited to 'src/collection_builder.rs')
-rw-r--r--src/collection_builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/collection_builder.rs b/src/collection_builder.rs
index 3535ee2..70c1ae3 100644
--- a/src/collection_builder.rs
+++ b/src/collection_builder.rs
@@ -5,6 +5,6 @@ pub trait CollectionBuilder {
type Output: Sized;
type Error: Sized;
- fn build_collection(&self) -> Result<Self::Output, Self::Error>;
+ fn build_collection(&self, value_desc: &str) -> Result<Self::Output, Self::Error>;
}