1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// ~/src/season.rs
//
// * Copyright (C) ParsiCore (parsidate) 2024-2025 <parsicore.dev@gmail.com>
// * Package : parsidate
// * License : Apache-2.0
// * Version : 1.7.1
// * URL : https://github.com/parsicore/parsidate
// * Sign: parsidate-20250607-fea13e856dcd-459c6e73c83e49e10162ee28b26ac7cd
//
//! # Persian Calendar Seasons
//!
//! This module defines the [`Season`] enum, which represents the four seasons of the year
//! according to the Persian (Jalali) calendar.
//!
//! Each variant corresponds to a three-month period:
//! - **Bahar (Spring)**: Farvardin, Ordibehesht, Khordad (Months 1-3)
//! - **Tabestan (Summer)**: Tir, Mordad, Shahrivar (Months 4-6)
//! - **Paeez (Autumn)**: Mehr, Aban, Azar (Months 7-9)
//! - **Zemestan (Winter)**: Dey, Bahman, Esfand (Months 10-12)
//!
//! The enum provides methods to get the season's name in both Persian and English, as well as its
//! start and end months. It is returned by methods like [`ParsiDate::season()`](crate::ParsiDate::season)
//! and can be used for date-based logic and formatting.
use crate;
use fmt;
/// Represents one of the four seasons in the Persian calendar.
///
/// This enum is `Copy`, `Clone`, `Debug`, `PartialEq`, `Eq`, and `Hash`. It can also be serialized
/// and deserialized with `serde` if the `serde` feature is enabled.
/// Implements the `Display` trait for `Season`.
///
/// This provides a default string representation for a `Season` instance, which is its
/// full Persian name. It allows `Season` to be used seamlessly with macros like `println!`
/// and `format!`.
///
/// # Examples
///
/// ```rust
/// use parsidate::Season;
///
/// let season = Season::Paeez;
///
/// // Using format! or to_string()
/// assert_eq!(season.to_string(), "پاییز");
///
/// // Using in println!
/// println!("The current season is {}.", season); // Prints: The current season is پاییز.
/// ```