pub struct Pattern<'data> {
    pub exponent: i8,
    pub index: u8,
    pub literal_text: Cow<'data, str>,
}
Expand description

A compact decimal pattern, representing some literal text with an optional placeholder, and the power of 10 expressed by the text.

Fields§

§exponent: i8

The compact decimal exponent, e.g., 6 for “million”. The value 0 indicates that compact notation is not used; in that case, literal text must be empty; this corresponds to the CLDR pattern “0”. This is derived from the numbers of 0s in the pattern and the associated type attribute; it is a more convenient representation than the number of 0s, because it is often common to multiple types; for instance, the following correspond to the same Pattern: 0 M 00 M

§index: u8

The index in literal_text before which the placeholder is inserted; this is 0 for insertion at the beginning, which is most common. The value 255 indicates that the pattern does not have a placeholder, as in French “mille” for 1000.

§literal_text: Cow<'data, str>

The underlying CLDR pattern with the placeholder removed, e.g., “ M“ for the pattern “000 M”

Trait Implementations§

source§

impl<'data> Clone for Pattern<'data>

source§

fn clone(&self) -> Pattern<'data>

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<'data> Debug for Pattern<'data>

source§

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

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

impl<'data> Default for Pattern<'data>

source§

fn default() -> Pattern<'data>

Returns the “default value” for a type. Read more
source§

impl<'data> EncodeAsVarULE<PatternULE> for &Pattern<'data>

source§

fn encode_var_ule_as_slices<R>(&self, cb: impl FnOnce(&[&[u8]]) -> R) -> R

Calls cb with a piecewise list of byte slices that when concatenated produce the memory pattern of the corresponding instance of T. Read more
source§

fn encode_var_ule_len(&self) -> usize

Return the length, in bytes, of the corresponding [VarULE] type
source§

fn encode_var_ule_write(&self, dst: &mut [u8])

Write the corresponding [VarULE] type to the dst buffer. dst should be the size of [Self::encode_var_ule_len()]
source§

impl<'data> EncodeAsVarULE<PatternULE> for Pattern<'data>

source§

fn encode_var_ule_as_slices<R>(&self, cb: impl FnOnce(&[&[u8]]) -> R) -> R

Calls cb with a piecewise list of byte slices that when concatenated produce the memory pattern of the corresponding instance of T. Read more
source§

fn encode_var_ule_len(&self) -> usize

Return the length, in bytes, of the corresponding [VarULE] type
source§

fn encode_var_ule_write(&self, dst: &mut [u8])

Write the corresponding [VarULE] type to the dst buffer. dst should be the size of [Self::encode_var_ule_len()]
source§

impl<'data> Ord for Pattern<'data>

source§

fn cmp(&self, other: &Pattern<'data>) -> Ordering

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

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

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

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

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

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

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

impl<'data> PartialEq<Pattern<'data>> for Pattern<'data>

source§

fn eq(&self, other: &Pattern<'data>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'data> PartialOrd<Pattern<'data>> for Pattern<'data>

source§

fn partial_cmp(&self, other: &Pattern<'data>) -> 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

This method 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

This method 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

This method 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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<'a> Yokeable<'a> for Pattern<'static>

§

type Output = Pattern<'a>

This type MUST be Self with the 'static replaced with 'a, i.e. Self<'a>
source§

fn transform(&'a self) -> &'a <Pattern<'static> as Yokeable<'a>>::Output

This method must cast self between &'a Self<'static> and &'a Self<'a>. Read more
source§

fn transform_owned(self) -> <Pattern<'static> as Yokeable<'a>>::Output

This method must cast self between Self<'static> and Self<'a>. Read more
source§

unsafe fn make( this: <Pattern<'static> as Yokeable<'a>>::Output ) -> Pattern<'static>

This method can be used to cast away Self<'a>’s lifetime. Read more
source§

fn transform_mut<F>(&'a mut self, f: F)where F: 'static + for<'b> FnOnce(&'b mut <Pattern<'static> as Yokeable<'a>>::Output),

This method must cast self between &'a mut Self<'static> and &'a mut Self<'a>, and pass it to f. Read more
source§

impl<'data> ZeroFrom<'data, PatternULE> for Pattern<'data>

source§

fn zero_from(other: &'data PatternULE) -> Pattern<'data>

Clone the other C into a struct that may retain references into C.
source§

impl<'zf, 'zf_inner> ZeroFrom<'zf, Pattern<'zf_inner>> for Pattern<'zf>

source§

fn zero_from(this: &'zf Pattern<'zf_inner>) -> Pattern<'zf>

Clone the other C into a struct that may retain references into C.
source§

impl<'data> Eq for Pattern<'data>

source§

impl<'data> StructuralEq for Pattern<'data>

source§

impl<'data> StructuralPartialEq for Pattern<'data>

Auto Trait Implementations§

§

impl<'data> RefUnwindSafe for Pattern<'data>

§

impl<'data> Send for Pattern<'data>

§

impl<'data> Sync for Pattern<'data>

§

impl<'data> Unpin for Pattern<'data>

§

impl<'data> UnwindSafe for Pattern<'data>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> ErasedDestructor for Twhere T: 'static,

source§

impl<T> MaybeSendSync for T