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 }, }