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
// SPDX-License-Identifier: MIT
// Copyright (c) 2022-2025 Andriel Ferreira <https://github.com/AndrielFR>
//! This module contains the `Gender` enum.
use ;
/// Represents the gender of a person.
///
/// The `Gender` enum defines various gender identities, including male,
/// female, non-binary, and other custom genders.
///
/// # Variants
///
/// * `Male` - Represents the male gender.
/// * `Female` - Represents the female gender.
/// * `NonBinary` - Represents the non-binary gender.
/// * `Other` - Represents a custom gender specified by a string.