Struct icu_provider::DataKey

source ·
pub struct DataKey { /* private fields */ }
Expand description

Used for loading data from an ICU4X data provider.

A resource key is tightly coupled with the code that uses it to load data at runtime. Executables can be searched for DataKey instances to produce optimized data files. Therefore, users should not generally create DataKey instances; they should instead use the ones exported by a component.

DataKeys are created with the data_key! macro:

const K: DataKey = icu_provider::data_key!("foo/bar@1");

The human-readable path string ends with @ followed by one or more digits (the version number). Paths do not contain characters other than ASCII letters and digits, _, /.

Invalid paths are compile-time errors (as data_key! uses const).

const K: DataKey = icu_provider::data_key!("foo/../bar@1");

Implementations§

source§

impl DataKey

source

pub const fn path(self) -> DataKeyPath

Gets a human-readable representation of a DataKey.

The human-readable path string ends with @ followed by one or more digits (the version number). Paths do not contain characters other than ASCII letters and digits, _, /.

Useful for reading and writing data to a file system.

source

pub const fn hashed(self) -> DataKeyHash

Gets a platform-independent hash of a DataKey.

The hash is 4 bytes and allows for fast key comparison.

Example
use icu_provider::DataKey;
use icu_provider::DataKeyHash;

const KEY: DataKey = icu_provider::data_key!("foo@1");
const KEY_HASH: DataKeyHash = KEY.hashed();

assert_eq!(KEY_HASH.to_bytes(), [0xe2, 0xb6, 0x17, 0x71]);
source

pub const fn metadata(self) -> DataKeyMetadata

Gets the metadata associated with this DataKey.

source

pub const fn from_path_and_metadata( path: DataKeyPath, metadata: DataKeyMetadata ) -> Self

Constructs a DataKey from a path and metadata.

Examples
use icu_provider::data_key;
use icu_provider::DataKey;

const CONST_KEY: DataKey = data_key!("foo@1");

let runtime_key =
    DataKey::from_path_and_metadata(CONST_KEY.path(), CONST_KEY.metadata());

assert_eq!(CONST_KEY, runtime_key);
source

pub fn match_key(self, key: Self) -> Result<(), DataError>

Returns Ok if this data key matches the argument, or the appropriate error.

Convenience method for data providers that support a single DataKey.

Examples
use icu_provider::prelude::*;

const FOO_BAR: DataKey = icu_provider::data_key!("foo/bar@1");
const FOO_BAZ: DataKey = icu_provider::data_key!("foo/baz@1");
const BAR_BAZ: DataKey = icu_provider::data_key!("bar/baz@1");

assert!(matches!(FOO_BAR.match_key(FOO_BAR), Ok(())));
assert!(matches!(
    FOO_BAR.match_key(FOO_BAZ),
    Err(DataError {
        kind: DataErrorKind::MissingDataKey,
        ..
    })
));
assert!(matches!(
    FOO_BAR.match_key(BAR_BAZ),
    Err(DataError {
        kind: DataErrorKind::MissingDataKey,
        ..
    })
));

// The error context contains the argument:
assert_eq!(FOO_BAR.match_key(BAR_BAZ).unwrap_err().key, Some(BAR_BAZ));

Trait Implementations§

source§

impl Clone for DataKey

source§

fn clone(&self) -> DataKey

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 DataKey

source§

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

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

impl Display for DataKey

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 Hash for DataKey

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 DataKey

source§

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

source§

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

source§

fn partial_cmp(&self, other: &Self) -> 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 DataKey

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_string(&self) -> Cow<'_, str>

Creates a new String with the data from this Writeable. Like ToString, but smaller and faster. 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§

impl Copy for DataKey

source§

impl Eq for DataKey

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,

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> 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.
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.
source§

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

source§

impl<T> MaybeSendSync for Twhere T: Send + Sync,