icu_locid_transform::provider

Type Alias UnvalidatedLanguage

Source
type UnvalidatedLanguage = UnvalidatedTinyAsciiStr<3>;

Aliased Type§

struct UnvalidatedLanguage(/* private fields */);

Implementations

Trait Implementations

Source§

impl<const N: usize> AsULE for UnvalidatedTinyAsciiStr<N>

Source§

type ULE = UnvalidatedTinyAsciiStr<N>

The ULE type corresponding to Self. Read more
Source§

fn to_unaligned(self) -> <UnvalidatedTinyAsciiStr<N> as AsULE>::ULE

Converts from Self to Self::ULE. Read more
Source§

fn from_unaligned( unaligned: <UnvalidatedTinyAsciiStr<N> as AsULE>::ULE, ) -> UnvalidatedTinyAsciiStr<N>

Converts from Self::ULE to Self. Read more
Source§

impl<const N: usize> Clone for UnvalidatedTinyAsciiStr<N>

Source§

fn clone(&self) -> UnvalidatedTinyAsciiStr<N>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<const N: usize> Debug for UnvalidatedTinyAsciiStr<N>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<const N: usize> From<TinyAsciiStr<N>> for UnvalidatedTinyAsciiStr<N>

Source§

fn from(other: TinyAsciiStr<N>) -> UnvalidatedTinyAsciiStr<N>

Converts to this type from the input type.
Source§

impl<const N: usize> Ord for UnvalidatedTinyAsciiStr<N>

Source§

fn cmp(&self, other: &UnvalidatedTinyAsciiStr<N>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<const N: usize> PartialEq for UnvalidatedTinyAsciiStr<N>

Source§

fn eq(&self, other: &UnvalidatedTinyAsciiStr<N>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const N: usize> PartialOrd for UnvalidatedTinyAsciiStr<N>

Source§

fn partial_cmp(&self, other: &UnvalidatedTinyAsciiStr<N>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<const N: usize> ULE for UnvalidatedTinyAsciiStr<N>

Source§

fn validate_byte_slice(bytes: &[u8]) -> Result<(), ZeroVecError>

Validates a byte slice, &[u8]. Read more
Source§

fn parse_byte_slice(bytes: &[u8]) -> Result<&[Self], ZeroVecError>

Parses a byte slice, &[u8], and return it as &[Self] with the same lifetime. Read more
Source§

unsafe fn from_byte_slice_unchecked(bytes: &[u8]) -> &[Self]

Takes a byte slice, &[u8], and return it as &[Self] with the same lifetime, assuming that this byte slice has previously been run through Self::parse_byte_slice() with success. Read more
Source§

fn as_byte_slice(slice: &[Self]) -> &[u8]

Given &[Self], returns a &[u8] with the same lifetime. Read more
Source§

impl<'a, const N: usize> ZeroMapKV<'a> for UnvalidatedTinyAsciiStr<N>

Source§

type Container = ZeroVec<'a, UnvalidatedTinyAsciiStr<N>>

The container that can be used with this type: ZeroVec or VarZeroVec.
Source§

type Slice = ZeroSlice<UnvalidatedTinyAsciiStr<N>>

Source§

type GetType = UnvalidatedTinyAsciiStr<N>

The type produced by Container::get() Read more
Source§

type OwnedType = UnvalidatedTinyAsciiStr<N>

The type produced by Container::replace() and Container::remove(), also used during deserialization. If Self is human readable serialized, deserializing to Self::OwnedType should produce the same value once passed through Self::owned_as_self() Read more
Source§

impl<const N: usize> Copy for UnvalidatedTinyAsciiStr<N>

Source§

impl<const N: usize> Eq for UnvalidatedTinyAsciiStr<N>

Source§

impl<const N: usize> StructuralPartialEq for UnvalidatedTinyAsciiStr<N>