es-fluent 0.14.0

The es-fluent crate
Documentation
use std::fmt;

/// This trait is similar to `std::fmt::Display`, but it is used for formatting
/// types that can be displayed in a Fluent message.
pub trait FluentDisplay {
    /// Formats the value using the given formatter.
    fn fluent_fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result;
}

/// This trait is automatically implemented for any type that implements
/// `FluentDisplay`.
pub trait ToFluentString {
    /// Converts the type into a Fluent (i18n translated) string.
    fn to_fluent_string(&self) -> String;
}

impl<T: FluentDisplay + ?Sized> ToFluentString for T {
    fn to_fluent_string(&self) -> String {
        struct FluentDisplayWrapper<'a, T: ?Sized> {
            inner: &'a T,
        }

        impl<'a, T: FluentDisplay + ?Sized> fmt::Display for FluentDisplayWrapper<'a, T> {
            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                self.inner.fluent_fmt(f)
            }
        }

        FluentDisplayWrapper { inner: self }.to_string()
    }
}