#[non_exhaustive]pub enum LocaleFallbackSupplement {
Collation,
}
Expand description
What additional data is required to load when performing fallback.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Collation
Collation supplement
Trait Implementations§
source§impl Clone for LocaleFallbackSupplement
impl Clone for LocaleFallbackSupplement
source§fn clone(&self) -> LocaleFallbackSupplement
fn clone(&self) -> LocaleFallbackSupplement
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LocaleFallbackSupplement
impl Debug for LocaleFallbackSupplement
source§impl Ord for LocaleFallbackSupplement
impl Ord for LocaleFallbackSupplement
source§fn cmp(&self, other: &LocaleFallbackSupplement) -> Ordering
fn cmp(&self, other: &LocaleFallbackSupplement) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for LocaleFallbackSupplement
impl PartialEq for LocaleFallbackSupplement
source§fn eq(&self, other: &LocaleFallbackSupplement) -> bool
fn eq(&self, other: &LocaleFallbackSupplement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for LocaleFallbackSupplement
impl PartialOrd for LocaleFallbackSupplement
source§fn partial_cmp(&self, other: &LocaleFallbackSupplement) -> Option<Ordering>
fn partial_cmp(&self, other: &LocaleFallbackSupplement) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for LocaleFallbackSupplement
impl Eq for LocaleFallbackSupplement
impl StructuralPartialEq for LocaleFallbackSupplement
Auto Trait Implementations§
impl Freeze for LocaleFallbackSupplement
impl RefUnwindSafe for LocaleFallbackSupplement
impl Send for LocaleFallbackSupplement
impl Sync for LocaleFallbackSupplement
impl Unpin for LocaleFallbackSupplement
impl UnwindSafe for LocaleFallbackSupplement
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more