Struct cssparser::UnicodeRange [−][src]
Expand description
One contiguous range of code points.
Can not be empty. Can represent a single code point when start == end.
Fields
start: u32
Inclusive start of the range. In [0, end].
end: u32
Inclusive end of the range. In [0, 0x10FFFF].
Implementations
https://drafts.csswg.org/css-syntax/#urange-syntax
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UnicodeRange
impl Send for UnicodeRange
impl Sync for UnicodeRange
impl Unpin for UnicodeRange
impl UnwindSafe for UnicodeRange
Blanket Implementations
Mutably borrows from an owned value. Read more