pub struct PteConfig {
pub paddr: PhysAddr,
pub valid: bool,
pub read: bool,
pub writable: bool,
pub executable: bool,
pub lower: bool,
pub dirty: bool,
pub global: bool,
pub is_dir: bool,
pub huge: bool,
pub mem_attr: MemAttributes,
}Fields§
§paddr: PhysAddr§valid: bool§read: bool§writable: bool§executable: bool§lower: bool§dirty: bool§global: bool§is_dir: bool§huge: bool§mem_attr: MemAttributesTrait Implementations§
impl Copy for PteConfig
impl Eq for PteConfig
impl StructuralPartialEq for PteConfig
Auto Trait Implementations§
impl Freeze for PteConfig
impl RefUnwindSafe for PteConfig
impl Send for PteConfig
impl Sync for PteConfig
impl Unpin for PteConfig
impl UnwindSafe for PteConfig
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