style: apply rustfmt formatting

This commit is contained in:
Stefano Amorelli
2025-08-17 13:57:05 +03:00
parent 8b8c7d1c25
commit bc5b76e270
2 changed files with 2 additions and 8 deletions

View File

@@ -80,7 +80,6 @@ impl ValidationConfig {
} }
} }
/// Simple validation result for CLI /// Simple validation result for CLI
pub struct ValidationResult { pub struct ValidationResult {
pub is_valid: bool, pub is_valid: bool,

View File

@@ -109,13 +109,8 @@ pub struct Scenario {
// Period with forever support // Period with forever support
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum Period { pub enum Period {
Instant { Instant { date: String },
date: String, Duration { start: String, end: String },
},
Duration {
start: String,
end: String,
},
Forever, Forever,
} }