From 7ab9301cde08540fc5654c1ddfcebfbbe556e99e Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Fri, 15 Nov 2024 14:56:21 +0100 Subject: [PATCH] derive Clone and Debug for WebAnnoConfig --- src/api/webanno.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/webanno.rs b/src/api/webanno.rs index a1115d3..42f1bae 100644 --- a/src/api/webanno.rs +++ b/src/api/webanno.rs @@ -99,6 +99,7 @@ fn value_to_json(value: &DataValue) -> String { } } +#[derive(Clone, Debug)] pub struct WebAnnoConfig { /// IRI prefix for Annotation Identifiers. Will be prepended if the annotations public ID is not an IRI yet. pub default_annotation_iri: String,