pub struct CanonicalCombiningClassMap { /* private fields */ }Expand description
Lookup of the Canonical_Combining_Class Unicode property.
Implementations§
Source§impl CanonicalCombiningClassMap
 
impl CanonicalCombiningClassMap
Sourcepub fn as_borrowed(&self) -> CanonicalCombiningClassMapBorrowed<'_>
 
pub fn as_borrowed(&self) -> CanonicalCombiningClassMapBorrowed<'_>
Constructs a borrowed version of this type for more efficient querying.
Sourcepub const fn new() -> CanonicalCombiningClassMapBorrowed<'static>
 
pub const fn new() -> CanonicalCombiningClassMapBorrowed<'static>
Construct from compiled data.
✨ Enabled with the compiled_data Cargo feature.
Sourcepub fn try_new_with_buffer_provider(
    provider: &(impl BufferProvider + ?Sized),
) -> Result<CanonicalCombiningClassMap, DataError>
 
pub fn try_new_with_buffer_provider( provider: &(impl BufferProvider + ?Sized), ) -> Result<CanonicalCombiningClassMap, DataError>
A version of [Self :: new] that uses custom data provided by a BufferProvider.
✨ Enabled with the serde feature.
Sourcepub fn try_new_unstable<D>(
    provider: &D,
) -> Result<CanonicalCombiningClassMap, DataError>
 
pub fn try_new_unstable<D>( provider: &D, ) -> Result<CanonicalCombiningClassMap, DataError>
A version of Self::new that uses custom data provided by a DataProvider.
⚠️ The bounds on provider may change over time, including in SemVer minor releases.
Trait Implementations§
Source§impl Debug for CanonicalCombiningClassMap
 
impl Debug for CanonicalCombiningClassMap
Source§impl Default for CanonicalCombiningClassMap
 
impl Default for CanonicalCombiningClassMap
Source§fn default() -> CanonicalCombiningClassMap
 
fn default() -> CanonicalCombiningClassMap
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CanonicalCombiningClassMap
impl RefUnwindSafe for CanonicalCombiningClassMap
impl !Send for CanonicalCombiningClassMap
impl !Sync for CanonicalCombiningClassMap
impl Unpin for CanonicalCombiningClassMap
impl UnwindSafe for CanonicalCombiningClassMap
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> 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