pub struct PropertyEnumToValueNameLinearMapperBorrowed<'a, T> {
map: &'a PropertyEnumToValueNameLinearMapV1<'a>,
markers: PhantomData<fn(_: T)>,
}
Expand description
A borrowed wrapper around property value name-to-enum data, returned by
PropertyEnumToValueNameLinearMapper::as_borrowed()
. More efficient to query.
Fields§
§map: &'a PropertyEnumToValueNameLinearMapV1<'a>
§markers: PhantomData<fn(_: T)>
Implementations§
source§impl<T: TrieValue> PropertyEnumToValueNameLinearMapperBorrowed<'_, T>
impl<T: TrieValue> PropertyEnumToValueNameLinearMapperBorrowed<'_, 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::GeneralCategory;
let lookup = GeneralCategory::enum_to_short_name_mapper();
assert_eq!(lookup.get(GeneralCategory::UppercaseLetter), Some("Lu"));
assert_eq!(lookup.get(GeneralCategory::DashPunctuation), Some("Pd"));
source§impl<T: TrieValue> PropertyEnumToValueNameLinearMapperBorrowed<'static, T>
impl<T: TrieValue> PropertyEnumToValueNameLinearMapperBorrowed<'static, T>
sourcepub const fn static_to_owned(self) -> PropertyEnumToValueNameLinearMapper<T>
pub const fn static_to_owned(self) -> PropertyEnumToValueNameLinearMapper<T>
Cheaply converts a [PropertyEnumToValueNameLinearMapperBorrowed<'static>
] into a PropertyEnumToValueNameLinearMapper
.
Note: Due to branching and indirection, using PropertyEnumToValueNameLinearMapper
might inhibit some
compile-time optimizations that are possible with PropertyEnumToValueNameLinearMapperBorrowed
.
Trait Implementations§
source§impl<'a, T: Clone> Clone for PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
impl<'a, T: Clone> Clone for PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
source§fn clone(&self) -> PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
fn clone(&self) -> PropertyEnumToValueNameLinearMapperBorrowed<'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 PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
impl<'a, T: Debug> Debug for PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
impl<'a, T: Copy> Copy for PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
impl<'a, T> RefUnwindSafe for PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
impl<'a, T> Send for PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
impl<'a, T> Sync for PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
impl<'a, T> Unpin for PropertyEnumToValueNameLinearMapperBorrowed<'a, T>
impl<'a, T> UnwindSafe for PropertyEnumToValueNameLinearMapperBorrowed<'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