/// An enum determining the plural form of a word.
///
/// This currently supports two forms:
///
/// - `AppendS`: Appends an `s` to the end of the word.
/// - `Custom`: A custom form provided by the user.
///
/// This may change in future hence the `#[non_exhaustive]` attribute.