pub struct SlitInfo {
pub num_nodes: usize,
pub distances: Vec<(u32, u32, u8)>,
}Expand description
NUMA distance information for SLIT generation.
Fields§
§num_nodes: usizeNumber of NUMA nodes (system localities).
distances: Vec<(u32, u32, u8)>Explicit distance entries (src, dst, distance). Entries not specified default to 10 (self) or 20 (cross-node).
Auto Trait Implementations§
impl Freeze for SlitInfo
impl RefUnwindSafe for SlitInfo
impl Send for SlitInfo
impl Sync for SlitInfo
impl Unpin for SlitInfo
impl UnsafeUnpin for SlitInfo
impl UnwindSafe for SlitInfo
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