Struct icu::properties::sets::CodePointSetData
source · [−]pub struct CodePointSetData { /* private fields */ }
Expand description
A wrapper around code point set data. It is returned by APIs that return Unicode
property data in a set-like form, ex: a set of code points sharing the same
value for a Unicode property. Access its data via the borrowed version,
CodePointSetDataBorrowed
.
Implementations
sourceimpl CodePointSetData
impl CodePointSetData
sourcepub fn as_borrowed(&self) -> CodePointSetDataBorrowed<'_>
pub fn as_borrowed(&self) -> CodePointSetDataBorrowed<'_>
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.
use icu_properties::sets;
let data = sets::load_alphabetic(&icu_testdata::unstable())
.expect("The data should be valid");
let alphabetic = data.as_borrowed();
assert!(!alphabetic.contains('3'));
assert!(alphabetic.contains('A'));
sourcepub fn from_data<M>(data: DataPayload<M>) -> CodePointSetData where
M: DataMarker<Yokeable = PropertyCodePointSetV1<'static>>,
pub fn from_data<M>(data: DataPayload<M>) -> CodePointSetData where
M: DataMarker<Yokeable = PropertyCodePointSetV1<'static>>,
Construct a new one from loaded data
Typically it is preferable to use getters like load_ascii_hex_digit()
instead
sourcepub fn from_code_point_inversion_list(
set: CodePointInversionList<'static>
) -> CodePointSetData
pub fn from_code_point_inversion_list(
set: CodePointInversionList<'static>
) -> CodePointSetData
Construct a new owned CodePointInversionList
sourcepub fn as_code_point_inversion_list(
&self
) -> Option<&CodePointInversionList<'_>>
pub fn as_code_point_inversion_list(
&self
) -> Option<&CodePointInversionList<'_>>
Convert this type to a CodePointInversionList
as a borrowed value.
The data backing this is extensible and supports multiple implementations.
Currently it is always CodePointInversionList
; 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 CodePointInversionList
, or cannot do so within the expected constant time
constraint.
sourcepub fn to_code_point_inversion_list(&self) -> CodePointInversionList<'_>
pub fn to_code_point_inversion_list(&self) -> CodePointInversionList<'_>
Convert this type to a CodePointInversionList
, borrowing if possible,
otherwise allocating a new CodePointInversionList
.
The data backing this is extensible and supports multiple implementations.
Currently it is always CodePointInversionList
; 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 CodePointSetData
impl Send for CodePointSetData
impl Sync for CodePointSetData
impl Unpin for CodePointSetData
impl UnwindSafe for CodePointSetData
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