From d0f1054f5c89ad1b3d2c3ed9d1895af75a485842 Mon Sep 17 00:00:00 2001 From: Guillaume Mourier Date: Thu, 1 Sep 2022 22:37:07 +0200 Subject: [PATCH] chore: cargo fmt --- meilisearch-http/src/option.rs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/meilisearch-http/src/option.rs b/meilisearch-http/src/option.rs index 3ca967b0e..bdfa283a6 100644 --- a/meilisearch-http/src/option.rs +++ b/meilisearch-http/src/option.rs @@ -107,11 +107,19 @@ pub struct Opt { pub import_snapshot: Option, /// The engine will ignore a missing snapshot and not return an error in such case. - #[clap(long, env = "MEILI_IGNORE_MISSING_SNAPSHOT", requires = "import-snapshot")] + #[clap( + long, + env = "MEILI_IGNORE_MISSING_SNAPSHOT", + requires = "import-snapshot" + )] pub ignore_missing_snapshot: bool, /// The engine will skip snapshot importation and not return an error in such case. - #[clap(long, env = "MEILI_IGNORE_SNAPSHOT_IF_DB_EXISTS", requires = "import-snapshot")] + #[clap( + long, + env = "MEILI_IGNORE_SNAPSHOT_IF_DB_EXISTS", + requires = "import-snapshot" + )] pub ignore_snapshot_if_db_exists: bool, /// Defines the directory path where meilisearch will create snapshot each snapshot_time_gap.