pub struct PropertyEnumToValueNameSparseMapperBorrowed<'a, T> {
map: &'a PropertyEnumToValueNameSparseMapV1<'a>,
markers: PhantomData<fn(_: T)>,
}
Expand description
A borrowed wrapper around property value name-to-enum data, returned by
PropertyEnumToValueNameSparseMapper::as_borrowed()
. More efficient to query.
Fields§
§map: &'a PropertyEnumToValueNameSparseMapV1<'a>
§markers: PhantomData<fn(_: T)>
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>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Mutably borrows from an owned value. Read more