pub struct VpTopologyInfo {
pub socket: u32,
pub core: u32,
pub thread: u32,
}Expand description
Topology information about a virtual processor.
Fields§
§socket: u32The socket index.
core: u32The core index within the socket.
thread: u32The 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