pub struct PageRegionEntry {
pub region_id: u8,
pub reserved: u8,
pub region_horizontal_address: u16,
pub region_vertical_address: u16,
}Expand description
A single region entry within a page composition segment.
Fields§
§region_id: u8Region identifier.
reserved: u8Reserved byte in the region entry (must be preserved for round-trip).
region_horizontal_address: u16Horizontal address of top-left pixel.
region_vertical_address: u16Vertical address of top line.
Trait Implementations§
Source§impl Clone for PageRegionEntry
impl Clone for PageRegionEntry
Source§fn clone(&self) -> PageRegionEntry
fn clone(&self) -> PageRegionEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PageRegionEntry
impl Debug for PageRegionEntry
impl Eq for PageRegionEntry
Source§impl PartialEq for PageRegionEntry
impl PartialEq for PageRegionEntry
Source§fn eq(&self, other: &PageRegionEntry) -> bool
fn eq(&self, other: &PageRegionEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PageRegionEntry
impl Serialize for PageRegionEntry
impl StructuralPartialEq for PageRegionEntry
Auto Trait Implementations§
impl Freeze for PageRegionEntry
impl RefUnwindSafe for PageRegionEntry
impl Send for PageRegionEntry
impl Sync for PageRegionEntry
impl Unpin for PageRegionEntry
impl UnsafeUnpin for PageRegionEntry
impl UnwindSafe for PageRegionEntry
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