pub struct NumaNodeInfo {
pub base: GuestAddress,
pub size: GuestUsize,
}
Expand description
Record numa node memory information.
Fields§
§base: GuestAddress
Base address of the region in guest physical address space.
size: GuestUsize
Size of the address region.
Trait Implementations§
Source§impl Clone for NumaNodeInfo
impl Clone for NumaNodeInfo
Source§fn clone(&self) -> NumaNodeInfo
fn clone(&self) -> NumaNodeInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for NumaNodeInfo
impl Debug for NumaNodeInfo
Source§impl Default for NumaNodeInfo
impl Default for NumaNodeInfo
Source§fn default() -> NumaNodeInfo
fn default() -> NumaNodeInfo
Returns the “default value” for a type. Read more
Source§impl PartialEq for NumaNodeInfo
impl PartialEq for NumaNodeInfo
impl Copy for NumaNodeInfo
impl Eq for NumaNodeInfo
impl StructuralPartialEq for NumaNodeInfo
Auto Trait Implementations§
impl Freeze for NumaNodeInfo
impl RefUnwindSafe for NumaNodeInfo
impl Send for NumaNodeInfo
impl Sync for NumaNodeInfo
impl Unpin for NumaNodeInfo
impl UnwindSafe for NumaNodeInfo
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