Struct icu::properties::sets::UnicodeSetData
source · [−]pub struct UnicodeSetData { /* private fields */ }
Expand description
A wrapper around UnicodeSet
data (characters and strings)
Implementations
sourceimpl 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>) -> UnicodeSetData where
M: DataMarker<Yokeable = PropertyUnicodeSetV1<'static>>,
pub fn from_data<M>(data: DataPayload<M>) -> UnicodeSetData where
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>
) -> UnicodeSetData
pub fn from_code_point_inversion_list_string_list(
set: CodePointInversionListAndStringList<'static>
) -> UnicodeSetData
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
.
Auto Trait Implementations
impl RefUnwindSafe for UnicodeSetData
impl Send for UnicodeSetData
impl Sync for UnicodeSetData
impl Unpin for UnicodeSetData
impl UnwindSafe for UnicodeSetData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more