pub trait Locale: Display { }
Expand description

This trait contains the common features of the Locale object that must be shared among all the implementations. Every implementor of listformat should provide their own version of Locale, and should ensure that it implements Locale. as specified here.

For the time being we agreed that a Locale must be convertible into its string form, using Display.

Implementors§