pub struct Fields(LiteMap<Key, Value>);
Expand description

A list of Key-Value pairs representing functional information about content transformations.

Here are examples of fields used in Unicode:

  • s0, d0 - Transform source/destination
  • t0 - Machine Translation
  • h0 - Hybrid Locale Identifiers

You can find the full list in Unicode BCP 47 T Extension section of LDML.

Examples

use icu::locid::extensions::transform::{key, Fields, Key, Value};

let value = "hybrid".parse::<Value>().expect("Failed to parse a Value.");
let fields = [(key!("h0"), value)].into_iter().collect::<Fields>();

assert_eq!(&fields.to_string(), "h0-hybrid");

Tuple Fields§

§0: LiteMap<Key, Value>

Implementations§

source§

impl Fields

source

pub const fn new() -> Self

Returns a new empty list of key-value pairs. Same as default(), but is const.

Examples
use icu::locid::extensions::transform::Fields;

assert_eq!(Fields::new(), Fields::default());
source

pub fn is_empty(&self) -> bool

Returns true if there are no fields.

Examples
use icu::locid::extensions::transform::Fields;
use icu::locid::locale;
use icu::locid::Locale;

let loc1 = Locale::try_from_bytes(b"und-t-h0-hybrid").unwrap();
let loc2 = locale!("und-u-ca-buddhist");

assert!(!loc1.extensions.transform.fields.is_empty());
assert!(loc2.extensions.transform.fields.is_empty());
source

pub fn clear(&mut self) -> Self

Empties the Fields list.

Returns the old list.

Examples
use icu::locid::extensions::transform::{key, Fields, Value};

let value = "hybrid".parse::<Value>().expect("Failed to parse a Value.");
let mut fields = [(key!("h0"), value)].into_iter().collect::<Fields>();

assert_eq!(&fields.to_string(), "h0-hybrid");

fields.clear();

assert_eq!(fields, Fields::new());
source

pub fn contains_key<Q>(&self, key: &Q) -> boolwhere Key: Borrow<Q>, Q: Ord,

Returns true if the list contains a Value for the specified Key.

Examples
use icu::locid::extensions::transform::{Fields, Key, Value};

let key: Key = "h0".parse().expect("Failed to parse a Key.");
let value: Value = "hybrid".parse().expect("Failed to parse a Value.");
let mut fields = [(key, value)].into_iter().collect::<Fields>();

let key: Key = "h0".parse().expect("Failed to parse a Key.");
assert!(&fields.contains_key(&key));
source

pub fn get<Q>(&self, key: &Q) -> Option<&Value>where Key: Borrow<Q>, Q: Ord,

Returns a reference to the Value corresponding to the Key.

Examples
use icu::locid::extensions::transform::{key, Fields, Key, Value};

let value = "hybrid".parse::<Value>().unwrap();
let fields = [(key!("h0"), value.clone())]
    .into_iter()
    .collect::<Fields>();

assert_eq!(fields.get(&key!("h0")), Some(&value));
source

pub fn set(&mut self, key: Key, value: Value) -> Option<Value>

Sets the specified keyword, returning the old value if it already existed.

Examples
use icu::locid::extensions::transform::{key, Key, Value};
use icu::locid::Locale;

let lower = "lower".parse::<Value>().expect("valid extension subtag");
let casefold = "casefold".parse::<Value>().expect("valid extension subtag");

let mut loc: Locale = "en-t-hi-d0-casefold"
    .parse()
    .expect("valid BCP-47 identifier");
let old_value = loc.extensions.transform.fields.set(key!("d0"), lower);

assert_eq!(old_value, Some(casefold));
assert_eq!(loc, "en-t-hi-d0-lower".parse().unwrap());
source

pub fn retain_by_key<F>(&mut self, predicate: F)where F: FnMut(&Key) -> bool,

Retains a subset of fields as specified by the predicate function.

Examples
use icu::locid::extensions::transform::key;
use icu::locid::Locale;

let mut loc: Locale = "und-t-h0-hybrid-d0-hex-m0-xml".parse().unwrap();

loc.extensions
    .transform
    .fields
    .retain_by_key(|&k| k == key!("h0"));
assert_eq!(loc, "und-t-h0-hybrid".parse().unwrap());

loc.extensions
    .transform
    .fields
    .retain_by_key(|&k| k == key!("d0"));
assert_eq!(loc, Locale::UND);
source

pub(crate) fn for_each_subtag_str<E, F>(&self, f: &mut F) -> Result<(), E>where F: FnMut(&str) -> Result<(), E>,

Trait Implementations§

source§

impl Clone for Fields

source§

fn clone(&self) -> Fields

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 Debug for Fields

source§

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

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

impl Default for Fields

source§

fn default() -> Fields

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

impl Display for Fields

This trait is implemented for compatibility with fmt!. To create a string, [Writeable::write_to_string] is usually more efficient.

source§

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

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

impl From<LiteMap<Key, Value, Vec<(Key, Value), Global>>> for Fields

source§

fn from(map: LiteMap<Key, Value>) -> Self

Converts to this type from the input type.
source§

impl FromIterator<(Key, Value)> for Fields

source§

fn from_iter<I: IntoIterator<Item = (Key, Value)>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl Hash for Fields

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Fields

source§

fn cmp(&self, other: &Fields) -> 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 PartialEq<Fields> for Fields

source§

fn eq(&self, other: &Fields) -> 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 PartialOrd<Fields> for Fields

source§

fn partial_cmp(&self, other: &Fields) -> 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 Writeable for Fields

source§

fn write_to<W: Write + ?Sized>(&self, sink: &mut W) -> Result

Writes a string to the given sink. Errors from the sink are bubbled up. The default implementation delegates to write_to_parts, and discards any Part annotations.
source§

fn writeable_length_hint(&self) -> LengthHint

Returns a hint for the number of UTF-8 bytes that will be written to the sink. Read more
source§

fn write_to_parts<S>(&self, sink: &mut S) -> Result<(), Error>where S: PartsWrite + ?Sized,

Write bytes and Part annotations to the given sink. Errors from the sink are bubbled up. The default implementation delegates to write_to, and doesn’t produce any Part annotations.
source§

fn write_to_string(&self) -> Cow<'_, str>

Creates a new String with the data from this Writeable. Like ToString, but smaller and faster. Read more
source§

impl Eq for Fields

source§

impl StructuralEq for Fields

source§

impl StructuralPartialEq for Fields

Auto Trait Implementations§

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.
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.
source§

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

Performs the conversion.