Trait icu::pattern::PatternBackend
source · pub trait PatternBackend:
Sealed
+ 'static
+ Debug {
type PlaceholderKey<'a>;
type PlaceholderKeyCow<'a>;
type Error<'a>;
}
Expand description
Types that implement backing data models for Pattern
implement this trait.
The trait has no public methods and is not implementable outside of this crate.
Required Associated Types§
sourcetype PlaceholderKey<'a>
type PlaceholderKey<'a>
The type to be used as the placeholder key in code.
sourcetype PlaceholderKeyCow<'a>
type PlaceholderKeyCow<'a>
Cowable version of the type to be used as the placeholder key in code.
sourcetype Error<'a>
type Error<'a>
The type of error that the TryWriteable
for this backend can return.
Object Safety§
This trait is not object safe.