Struct icu::collections::codepointtrie::CodePointMapRange
source · [−]pub struct CodePointMapRange<T> where
T: TrieValue, {
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 a TrieValue
.
Fields
range: RangeInclusive<u32>
Range of code points from start to end (inclusive).
value: T
Trie value associated with this range.
Trait Implementations
sourceimpl<T> Clone for CodePointMapRange<T> where
T: Clone + TrieValue,
impl<T> Clone for CodePointMapRange<T> where
T: Clone + TrieValue,
sourcefn clone(&self) -> CodePointMapRange<T>
fn clone(&self) -> CodePointMapRange<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T> Debug for CodePointMapRange<T> where
T: Debug + TrieValue,
impl<T> Debug for CodePointMapRange<T> where
T: Debug + TrieValue,
sourceimpl<T> PartialEq<CodePointMapRange<T>> for CodePointMapRange<T> where
T: PartialEq<T> + TrieValue,
impl<T> PartialEq<CodePointMapRange<T>> for CodePointMapRange<T> where
T: PartialEq<T> + TrieValue,
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &CodePointMapRange<T>) -> bool
fn ne(&self, other: &CodePointMapRange<T>) -> bool
This method tests for !=
.
impl<T> Eq for CodePointMapRange<T> where
T: Eq + TrieValue,
impl<T> StructuralEq for CodePointMapRange<T> where
T: TrieValue,
impl<T> StructuralPartialEq for CodePointMapRange<T> where
T: TrieValue,
Auto Trait Implementations
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
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more