Struct icu_locid::extensions::transform::Fields

source ·
pub struct Fields(/* private fields */);
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, 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");

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::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) -> bool
where 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, 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, 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);

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>> 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) -> 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 + PartialOrd,

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

impl PartialEq 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 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§

fn writeable_cmp_bytes(&self, other: &[u8]) -> Ordering

Compares the contents of this Writeable to the given bytes without allocating a String to hold the Writeable contents. Read more
source§

impl Eq for Fields

source§

impl StructuralPartialEq for Fields

Auto Trait Implementations§

§

impl Freeze for Fields

§

impl RefUnwindSafe for Fields

§

impl Send for Fields

§

impl Sync for Fields

§

impl Unpin for Fields

§

impl UnwindSafe for Fields

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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 T
where 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 T
where 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.