pub struct CCCEntry {
pub low_plane_end_ix: u16,
pub range_len: u8,
pub ccc: u8,
}
Fields§
§low_plane_end_ix: u16
The exclusive, lower 16-bits of end of the range for a given entry. e.g. If 0xfff0..0xffff maps to 222 (say), then this would contain 0xfffe but not 0xffff
range_len: u8
The size of the range. e.g. For range 2..6, this would be 4.
ccc: u8
The CCC for this range. Note that we don’t store CCC=0.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CCCEntry
impl RefUnwindSafe for CCCEntry
impl Send for CCCEntry
impl Sync for CCCEntry
impl Unpin for CCCEntry
impl UnwindSafe for CCCEntry
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