Struct vm_topology::processor::VpTopologyInfo
source · pub struct VpTopologyInfo {
pub socket: u32,
pub core: u32,
pub thread: u32,
}
Expand description
Topology information about a virtual processor.
Fields§
§socket: u32
The socket index.
core: u32
The core index within the socket.
thread: u32
The thread index within the core.
Auto Trait Implementations§
impl Freeze for VpTopologyInfo
impl RefUnwindSafe for VpTopologyInfo
impl Send for VpTopologyInfo
impl Sync for VpTopologyInfo
impl Unpin for VpTopologyInfo
impl UnwindSafe for VpTopologyInfo
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