pub struct PropertyEnumToValueNameSparseMapperBorrowed<'a, T> { /* private fields */ }Expand description
A borrowed wrapper around property value name-to-enum data, returned by
PropertyEnumToValueNameSparseMapper::as_borrowed(). More efficient to query.
Implementations§
Source§impl<T: TrieValue> PropertyEnumToValueNameSparseMapperBorrowed<'_, T>
impl<T: TrieValue> PropertyEnumToValueNameSparseMapperBorrowed<'_, T>
Sourcepub fn get(&self, property: T) -> Option<&str>
pub fn get(&self, property: T) -> Option<&str>
Get the property name given a value
§Example
use icu::properties::CanonicalCombiningClass;
let lookup = CanonicalCombiningClass::enum_to_long_name_mapper();
assert_eq!(
lookup.get(CanonicalCombiningClass::KanaVoicing),
Some("Kana_Voicing")
);
assert_eq!(
lookup.get(CanonicalCombiningClass::AboveLeft),
Some("Above_Left")
);Source§impl<T: TrieValue> PropertyEnumToValueNameSparseMapperBorrowed<'static, T>
impl<T: TrieValue> PropertyEnumToValueNameSparseMapperBorrowed<'static, T>
Sourcepub const fn static_to_owned(self) -> PropertyEnumToValueNameSparseMapper<T>
pub const fn static_to_owned(self) -> PropertyEnumToValueNameSparseMapper<T>
Cheaply converts a PropertyEnumToValueNameSparseMapperBorrowed<'static> into a PropertyEnumToValueNameSparseMapper.
Note: Due to branching and indirection, using PropertyEnumToValueNameSparseMapper might inhibit some
compile-time optimizations that are possible with PropertyEnumToValueNameSparseMapperBorrowed.
Trait Implementations§
Source§impl<'a, T: Clone> Clone for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
impl<'a, T: Clone> Clone for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
Source§fn clone(&self) -> PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
fn clone(&self) -> PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<'a, T: Debug> Debug for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
impl<'a, T: Debug> Debug for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
impl<'a, T: Copy> Copy for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
impl<'a, T> RefUnwindSafe for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
impl<'a, T> Send for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
impl<'a, T> Sync for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
impl<'a, T> Unpin for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
impl<'a, T> UnwindSafe for PropertyEnumToValueNameSparseMapperBorrowed<'a, T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSendSync for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes