Struct icu_properties::sets::UnicodeSetData
source · pub struct UnicodeSetData {
data: DataPayload<ErasedUnicodeSetlikeMarker>,
}
Expand description
A wrapper around UnicodeSet
data (characters and strings)
Fields§
§data: DataPayload<ErasedUnicodeSetlikeMarker>
Implementations§
source§impl UnicodeSetData
impl UnicodeSetData
sourcepub fn as_borrowed(&self) -> UnicodeSetDataBorrowed<'_>
pub fn as_borrowed(&self) -> UnicodeSetDataBorrowed<'_>
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.
sourcepub fn from_data<M>(data: DataPayload<M>) -> Selfwhere
M: DataMarker<Yokeable = PropertyUnicodeSetV1<'static>>,
pub fn from_data<M>(data: DataPayload<M>) -> Selfwhere
M: DataMarker<Yokeable = PropertyUnicodeSetV1<'static>>,
Construct a new one from loaded data
Typically it is preferable to use getters instead
sourcepub fn from_code_point_inversion_list_string_list(
set: CodePointInversionListAndStringList<'static>,
) -> Self
pub fn from_code_point_inversion_list_string_list( set: CodePointInversionListAndStringList<'static>, ) -> Self
Construct a new owned CodePointInversionListAndStringList
sourcepub fn as_code_point_inversion_list_string_list(
&self,
) -> Option<&CodePointInversionListAndStringList<'_>>
pub fn as_code_point_inversion_list_string_list( &self, ) -> Option<&CodePointInversionListAndStringList<'_>>
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.
sourcepub fn to_code_point_inversion_list_string_list(
&self,
) -> CodePointInversionListAndStringList<'_>
pub fn to_code_point_inversion_list_string_list( &self, ) -> CodePointInversionListAndStringList<'_>
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
.