pub struct DomainSegment {
pub vstart: u64,
pub vend: u64,
pub pfn: u64,
pub addr: u64,
pub size: u64,
pub pages: u64,
}
Fields§
§vstart: u64
§vend: u64
§pfn: u64
§addr: u64
§size: u64
§pages: u64
Trait Implementations§
Source§impl Clone for DomainSegment
impl Clone for DomainSegment
Source§fn clone(&self) -> DomainSegment
fn clone(&self) -> DomainSegment
Returns a duplicate 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 Debug for DomainSegment
impl Debug for DomainSegment
Source§impl Default for DomainSegment
impl Default for DomainSegment
Source§fn default() -> DomainSegment
fn default() -> DomainSegment
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DomainSegment
impl RefUnwindSafe for DomainSegment
impl Send for DomainSegment
impl Sync for DomainSegment
impl Unpin for DomainSegment
impl UnwindSafe for DomainSegment
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