Struct ComposingNormalizerBorrowed

Source
pub struct ComposingNormalizerBorrowed<'a> { /* private fields */ }
Expand description

Borrowed version of a normalizer for performing composing normalization.

Implementations§

Source§

impl ComposingNormalizerBorrowed<'static>

Source

pub const fn static_to_owned(self) -> ComposingNormalizer

Cheaply converts a [ComposingNormalizerBorrowed<'static>] into a ComposingNormalizer.

Note: Due to branching and indirection, using ComposingNormalizer might inhibit some compile-time optimizations that are possible with ComposingNormalizerBorrowed.

Source

pub const fn new_nfc() -> Self

NFC constructor using compiled data.

Enabled with the compiled_data Cargo feature.

📚 Help choosing a constructor

Source

pub const fn new_nfkc() -> Self

NFKC constructor using compiled data.

Enabled with the compiled_data Cargo feature.

📚 Help choosing a constructor

Source§

impl<'data> ComposingNormalizerBorrowed<'data>

Source

pub fn normalize_iter<I: Iterator<Item = char>>( &self, iter: I, ) -> Composition<'data, I>

Wraps a delegate iterator into a composing iterator adapter by using the data already held by this normalizer.

Source

pub fn normalize<'a>(&self, text: &'a str) -> Cow<'a, str>

Normalize a string slice into a Cow<'a, str>.

Source

pub fn split_normalized<'a>(&self, text: &'a str) -> (&'a str, &'a str)

Split a string slice into maximum normalized prefix and unnormalized suffix such that the concatenation of the prefix and the normalization of the suffix is the normalization of the whole input.

Source

pub fn is_normalized(&self, text: &str) -> bool

Check whether a string slice is normalized.

Source

pub fn normalize_to<W: Write + ?Sized>( &self, text: &str, sink: &mut W, ) -> Result

Normalize a string slice into a Write sink.

Trait Implementations§

Source§

impl<'a> Debug for ComposingNormalizerBorrowed<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,