From bc5b76e27003c59bc982323216cd9dc0a490e117 Mon Sep 17 00:00:00 2001 From: Stefano Amorelli Date: Sun, 17 Aug 2025 13:57:05 +0300 Subject: [PATCH] style: apply rustfmt formatting --- src/lib.rs | 1 - src/model.rs | 9 ++------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 11aa686..1b08fd8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -80,7 +80,6 @@ impl ValidationConfig { } } - /// Simple validation result for CLI pub struct ValidationResult { pub is_valid: bool, diff --git a/src/model.rs b/src/model.rs index 93f2818..98df459 100644 --- a/src/model.rs +++ b/src/model.rs @@ -109,13 +109,8 @@ pub struct Scenario { // Period with forever support #[derive(Debug, Clone)] pub enum Period { - Instant { - date: String, - }, - Duration { - start: String, - end: String, - }, + Instant { date: String }, + Duration { start: String, end: String }, Forever, }