useserde::Deserialize;usestd::path::PathBuf;/// The data structure representing what is stored (and possible to
/// store) within the `fluent` subsection of a `i18n.toml` file.
#[derive(Deserialize, Debug, Clone)]pubstructFluentConfig{/// (Required) The path to the assets directory.
////// The paths inside the assets directory should be structured
/// like so: `assets_dir/{language}/{domain}.ftl`
pubassets_dir: PathBuf,
}