hwlocality 1.0.0-alpha.12

Idiomatic Rust bindings for the hwloc hardware locality library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! CPU-specific functionality
//!
//! Most of this module's functionality is exposed via methods of the
//! [`Topology`] struct. The module itself only hosts type definitions that are
//! related to this functionality.

pub mod binding;
pub mod cache;
pub mod cpuset;
#[cfg(feature = "hwloc-2_4_0")]
pub mod kind;

#[cfg(doc)]
use crate::topology::Topology;