Struct icu_properties::sets::UnicodeSetDataBorrowed
source · pub struct UnicodeSetDataBorrowed<'a> { /* private fields */ }
Expand description
A borrowed wrapper around code point set data, returned by
UnicodeSetData::as_borrowed()
. More efficient to query.
Implementations§
source§impl<'a> UnicodeSetDataBorrowed<'a>
impl<'a> UnicodeSetDataBorrowed<'a>
sourcepub fn contains(self, s: &str) -> bool
pub fn contains(self, s: &str) -> bool
Check if the set contains the string. Strings consisting of one character are treated as a character/code point.
This matches ICU behavior for ICU’s UnicodeSet
.
sourcepub fn contains32(&self, cp: u32) -> bool
pub fn contains32(&self, cp: u32) -> bool
Check if the set contains a character as a UTF32 code unit
sourcepub fn contains_char(&self, ch: char) -> bool
pub fn contains_char(&self, ch: char) -> bool
Check if the set contains the code point corresponding to the Rust character.
source§impl UnicodeSetDataBorrowed<'static>
impl UnicodeSetDataBorrowed<'static>
sourcepub const fn static_to_owned(self) -> UnicodeSetData
pub const fn static_to_owned(self) -> UnicodeSetData
Cheaply converts a [UnicodeSetDataBorrowed<'static>
] into a UnicodeSetData
.
Note: Due to branching and indirection, using UnicodeSetData
might inhibit some
compile-time optimizations that are possible with UnicodeSetDataBorrowed
.
Trait Implementations§
source§impl<'a> Clone for UnicodeSetDataBorrowed<'a>
impl<'a> Clone for UnicodeSetDataBorrowed<'a>
source§fn clone(&self) -> UnicodeSetDataBorrowed<'a>
fn clone(&self) -> UnicodeSetDataBorrowed<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Debug for UnicodeSetDataBorrowed<'a>
impl<'a> Debug for UnicodeSetDataBorrowed<'a>
impl<'a> Copy for UnicodeSetDataBorrowed<'a>
Auto Trait Implementations§
impl<'a> Freeze for UnicodeSetDataBorrowed<'a>
impl<'a> RefUnwindSafe for UnicodeSetDataBorrowed<'a>
impl<'a> Send for UnicodeSetDataBorrowed<'a>
impl<'a> Sync for UnicodeSetDataBorrowed<'a>
impl<'a> Unpin for UnicodeSetDataBorrowed<'a>
impl<'a> UnwindSafe for UnicodeSetDataBorrowed<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)