Struct icu::normalizer::properties::CanonicalDecomposition
source · pub struct CanonicalDecomposition { /* private fields */ }
Expand description
The raw (non-recursive) canonical decomposition operation.
Callers should generally use DecomposingNormalizer
instead of this API.
However, this API is provided for callers such as HarfBuzz that specifically
want access to non-recursive canonical decomposition e.g. for use in a
glyph-availability-guided custom normalizer.
Implementations§
source§impl CanonicalDecomposition
impl CanonicalDecomposition
sourcepub fn as_borrowed(&self) -> CanonicalDecompositionBorrowed<'_>
pub fn as_borrowed(&self) -> CanonicalDecompositionBorrowed<'_>
Constructs a borrowed version of this type for more efficient querying.
sourcepub const fn new() -> CanonicalDecompositionBorrowed<'static>
pub const fn new() -> CanonicalDecompositionBorrowed<'static>
Construct from compiled data.
✨ Enabled with the compiled_data
Cargo feature.
sourcepub fn try_new_with_any_provider(
provider: &(impl AnyProvider + ?Sized),
) -> Result<CanonicalDecomposition, DataError>
pub fn try_new_with_any_provider( provider: &(impl AnyProvider + ?Sized), ) -> Result<CanonicalDecomposition, DataError>
A version of [Self :: new
] that uses custom data provided by an AnyProvider
.
sourcepub fn try_new_with_buffer_provider(
provider: &(impl BufferProvider + ?Sized),
) -> Result<CanonicalDecomposition, DataError>
pub fn try_new_with_buffer_provider( provider: &(impl BufferProvider + ?Sized), ) -> Result<CanonicalDecomposition, 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<CanonicalDecomposition, DataError>
pub fn try_new_unstable<D>( provider: &D, ) -> Result<CanonicalDecomposition, 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 CanonicalDecomposition
impl Debug for CanonicalDecomposition
source§impl Default for CanonicalDecomposition
impl Default for CanonicalDecomposition
source§fn default() -> CanonicalDecomposition
fn default() -> CanonicalDecomposition
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CanonicalDecomposition
impl RefUnwindSafe for CanonicalDecomposition
impl Send for CanonicalDecomposition
impl Sync for CanonicalDecomposition
impl Unpin for CanonicalDecomposition
impl UnwindSafe for CanonicalDecomposition
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