pub struct UnicodeSetData { /* private fields */ }
Expand description

A wrapper around UnicodeSet data (characters and strings)

Implementations§

Construct a borrowed version of this type that can be queried.

This avoids a potential small underlying cost per API call (ex: contains()) by consolidating it up front.

Construct a new one from loaded data

Typically it is preferable to use getters instead

Convert this type to a CodePointInversionListAndStringList as a borrowed value.

The data backing this is extensible and supports multiple implementations. Currently it is always CodePointInversionListAndStringList; however in the future more backends may be added, and users may select which at data generation time.

This method returns an Option in order to return None when the backing data provider cannot return a CodePointInversionListAndStringList, or cannot do so within the expected constant time constraint.

Convert this type to a CodePointInversionListAndStringList, borrowing if possible, otherwise allocating a new CodePointInversionListAndStringList.

The data backing this is extensible and supports multiple implementations. Currently it is always CodePointInversionListAndStringList; however in the future more backends may be added, and users may select which at data generation time.

The performance of the conversion to this specific return type will vary depending on the data structure that is backing self.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.