From 482f750231945fd4ebe11055646bef0b62499b8d Mon Sep 17 00:00:00 2001 From: Quentin de Quelen Date: Tue, 12 Feb 2019 19:12:41 +0100 Subject: [PATCH] chore: Set config field pub --- src/database/config.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/database/config.rs b/src/database/config.rs index 2150566a8..ba6fd1d0a 100644 --- a/src/database/config.rs +++ b/src/database/config.rs @@ -10,10 +10,10 @@ pub enum RankingOrdering { #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] pub struct Config { - stop_words: Option>, - ranking_order: Option>, - distinct_field: Option, - ranking_rules: Option>, + pub stop_words: Option>, + pub ranking_order: Option>, + pub distinct_field: Option, + pub ranking_rules: Option>, }