#[repr(C)]pub struct PciMemoryRegion {
pub bar: i64,
pub type_: *mut c_char,
pub address: i64,
pub size: i64,
pub has_prefetch: bool,
pub prefetch: bool,
pub has_mem_type_64: bool,
pub mem_type_64: bool,
}Fields§
§bar: i64§type_: *mut c_char§address: i64§size: i64§has_prefetch: bool§prefetch: bool§has_mem_type_64: bool§mem_type_64: boolTrait Implementations§
Source§impl Clone for PciMemoryRegion
impl Clone for PciMemoryRegion
Source§fn clone(&self) -> PciMemoryRegion
fn clone(&self) -> PciMemoryRegion
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 PciMemoryRegion
impl Debug for PciMemoryRegion
impl Copy for PciMemoryRegion
Auto Trait Implementations§
impl Freeze for PciMemoryRegion
impl RefUnwindSafe for PciMemoryRegion
impl !Send for PciMemoryRegion
impl !Sync for PciMemoryRegion
impl Unpin for PciMemoryRegion
impl UnwindSafe for PciMemoryRegion
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