[go: up one dir, main page]

fluent 0.3.0

A localization library designed to unleash the entire expressive power of natural language translations.
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Debug, Fail)]
pub enum FluentError {
    #[fail(
        display = "attempted to override an existing {}: {}",
        kind,
        id
    )]
    Overriding { kind: &'static str, id: String },
}