Struct panda::sys::AddressSpace
source · [−]#[repr(C)]pub struct AddressSpace {Show 13 fields
pub rcu: rcu_head,
pub name: *mut i8,
pub root: *mut MemoryRegion,
pub ref_count: i32,
pub malloced: bool,
pub current_map: *mut FlatView,
pub ioeventfd_nb: i32,
pub ioeventfds: *mut MemoryRegionIoeventfd,
pub dispatch: *mut AddressSpaceDispatch,
pub next_dispatch: *mut AddressSpaceDispatch,
pub dispatch_listener: MemoryListener,
pub listeners: AddressSpace_memory_listeners_as,
pub address_spaces_link: AddressSpace__bindgen_ty_1,
}Expand description
AddressSpace: describes a mapping of addresses to #MemoryRegion objects
Fields
rcu: rcu_headname: *mut i8root: *mut MemoryRegionref_count: i32malloced: boolcurrent_map: *mut FlatViewioeventfd_nb: i32ioeventfds: *mut MemoryRegionIoeventfddispatch: *mut AddressSpaceDispatchnext_dispatch: *mut AddressSpaceDispatchdispatch_listener: MemoryListenerlisteners: AddressSpace_memory_listeners_asaddress_spaces_link: AddressSpace__bindgen_ty_1Trait Implementations
sourceimpl Clone for AddressSpace
impl Clone for AddressSpace
sourcefn clone(&self) -> AddressSpace
fn clone(&self) -> AddressSpace
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AddressSpace
impl Debug for AddressSpace
impl Copy for AddressSpace
Auto Trait Implementations
impl RefUnwindSafe for AddressSpace
impl !Send for AddressSpace
impl !Sync for AddressSpace
impl Unpin for AddressSpace
impl UnwindSafe for AddressSpace
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more