Struct icu::properties::PropertyNamesLongBorrowed
source · pub struct PropertyNamesLongBorrowed<'a, T>where
T: NamedEnumeratedProperty,{ /* private fields */ }
Expand description
A borrowed wrapper around property value name-to-enum data, returned by
PropertyNamesLong::as_borrowed()
. More efficient to query.
Implementations§
source§impl<T> PropertyNamesLongBorrowed<'_, T>where
T: NamedEnumeratedProperty,
impl<T> PropertyNamesLongBorrowed<'_, T>where
T: NamedEnumeratedProperty,
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::PropertyNamesLong;
use icu::properties::props::CanonicalCombiningClass;
let lookup = PropertyNamesLong::<CanonicalCombiningClass>::new();
assert_eq!(
lookup.get(CanonicalCombiningClass::KanaVoicing),
Some("Kana_Voicing")
);
assert_eq!(
lookup.get(CanonicalCombiningClass::AboveLeft),
Some("Above_Left")
);
source§impl<T> PropertyNamesLongBorrowed<'static, T>where
T: NamedEnumeratedProperty,
impl<T> PropertyNamesLongBorrowed<'static, T>where
T: NamedEnumeratedProperty,
sourcepub fn new() -> PropertyNamesLongBorrowed<'static, T>
pub fn new() -> PropertyNamesLongBorrowed<'static, T>
Creates a new instance of PropertyNamesLongBorrowed<T>
.
✨ Enabled with the compiled_data
Cargo feature.
sourcepub const fn static_to_owned(self) -> PropertyNamesLong<T>
pub const fn static_to_owned(self) -> PropertyNamesLong<T>
Cheaply converts a [PropertyNamesLongBorrowed<'static>
] into a PropertyNamesLong
.
Note: Due to branching and indirection, using PropertyNamesLong
might inhibit some
compile-time optimizations that are possible with PropertyNamesLongBorrowed
.
Trait Implementations§
source§impl<T> Clone for PropertyNamesLongBorrowed<'_, T>where
T: NamedEnumeratedProperty,
impl<T> Clone for PropertyNamesLongBorrowed<'_, T>where
T: NamedEnumeratedProperty,
source§fn clone(&self) -> PropertyNamesLongBorrowed<'_, T>
fn clone(&self) -> PropertyNamesLongBorrowed<'_, 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 for PropertyNamesLongBorrowed<'a, T>
impl<'a, T> Debug for PropertyNamesLongBorrowed<'a, T>
source§impl<T> Default for PropertyNamesLongBorrowed<'static, T>where
T: NamedEnumeratedProperty,
impl<T> Default for PropertyNamesLongBorrowed<'static, T>where
T: NamedEnumeratedProperty,
source§fn default() -> PropertyNamesLongBorrowed<'static, T>
fn default() -> PropertyNamesLongBorrowed<'static, T>
Returns the “default value” for a type. Read more
impl<T> Copy for PropertyNamesLongBorrowed<'_, T>where
T: NamedEnumeratedProperty,
Auto Trait Implementations§
impl<'a, T> Freeze for PropertyNamesLongBorrowed<'a, T>
impl<'a, T> RefUnwindSafe for PropertyNamesLongBorrowed<'a, T>
impl<'a, T> Send for PropertyNamesLongBorrowed<'a, T>
impl<'a, T> Sync for PropertyNamesLongBorrowed<'a, T>
impl<'a, T> Unpin for PropertyNamesLongBorrowed<'a, T>
impl<'a, T> UnwindSafe for PropertyNamesLongBorrowed<'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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more