pub struct NumaIdTable {
pub memory: Vec<u32>,
pub cpu: Vec<u32>,
}
Expand description
Type for recording numa ids of different devices
Fields§
§memory: Vec<u32>
vectors of numa id for each memory region
cpu: Vec<u32>
vectors of numa id for each cpu
Auto Trait Implementations§
impl Freeze for NumaIdTable
impl RefUnwindSafe for NumaIdTable
impl Send for NumaIdTable
impl Sync for NumaIdTable
impl Unpin for NumaIdTable
impl UnwindSafe for NumaIdTable
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