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: TTrie value associated with this range.
Trait Implementations§
Source§impl<T> Clone for CodePointMapRange<T>where
T: Clone,
impl<T> Clone for CodePointMapRange<T>where
T: Clone,
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 for CodePointMapRange<T>where
T: Debug,
impl<T> Debug for CodePointMapRange<T>where
T: Debug,
Source§impl<T> PartialEq for CodePointMapRange<T>where
T: PartialEq,
impl<T> PartialEq for CodePointMapRange<T>where
T: PartialEq,
impl<T> Eq for CodePointMapRange<T>where
T: Eq,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more