Struct icu_collections::codepointtrie::cptrie::CodePointMapRange
source · pub struct CodePointMapRange<T> {
pub range: RangeInclusive<u32>,
pub value: T,
}
Expand description
Represents a range of consecutive code points sharing the same value in a
code point map. The start and end of the interval is represented as a
RangeInclusive<u32>
, and the value is represented as T
.
Fields§
§range: RangeInclusive<u32>
Range of code points from start to end (inclusive).
value: T
Trie value associated with this range.
Trait Implementations§
source§impl<T: Clone> Clone for CodePointMapRange<T>
impl<T: Clone> Clone for CodePointMapRange<T>
source§fn clone(&self) -> CodePointMapRange<T>
fn clone(&self) -> CodePointMapRange<T>
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<T: Debug> Debug for CodePointMapRange<T>
impl<T: Debug> Debug for CodePointMapRange<T>
source§impl<T: PartialEq> PartialEq for CodePointMapRange<T>
impl<T: PartialEq> PartialEq for CodePointMapRange<T>
source§fn eq(&self, other: &CodePointMapRange<T>) -> bool
fn eq(&self, other: &CodePointMapRange<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<T: Eq> Eq for CodePointMapRange<T>
impl<T> StructuralPartialEq for CodePointMapRange<T>
Auto Trait Implementations§
impl<T> Freeze for CodePointMapRange<T>where
T: Freeze,
impl<T> RefUnwindSafe for CodePointMapRange<T>where
T: RefUnwindSafe,
impl<T> Send for CodePointMapRange<T>where
T: Send,
impl<T> Sync for CodePointMapRange<T>where
T: Sync,
impl<T> Unpin for CodePointMapRange<T>where
T: Unpin,
impl<T> UnwindSafe for CodePointMapRange<T>where
T: UnwindSafe,
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