From 645622a9023697395a4e3232e46540926bfbc114 Mon Sep 17 00:00:00 2001 From: djairoh Date: Wed, 10 May 2023 14:39:50 +0200 Subject: [PATCH] switched from Duration struct to u64 --- src/structs/config.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/structs/config.rs b/src/structs/config.rs index a6945bb..6d31b59 100644 --- a/src/structs/config.rs +++ b/src/structs/config.rs @@ -50,6 +50,7 @@ impl Default for Rating { pub struct Config { pub metadata_separator: String, pub array_separator: char, + pub update_delay: u64, pub hide_output: bool, pub fuzzy: bool, pub render_prefix: bool, @@ -58,7 +59,7 @@ pub struct Config { pub rating_icons: Rating, pub metadata_fields: Vec, pub player_prefixes: HashMap, - pub update_delay: u64, + } impl Default for Config {