Trait hwlocality::bitmap::OwnedSpecializedBitmap

source ·
pub trait OwnedSpecializedBitmap: OwnedBitmap + SpecializedBitmap<Owned = Self> { }
Expand description

An owned specialized bitmaps (CpuSet, NodeSet)

This is a little bit more than an alias for OwnedBitmap + SpecializedBitmap because if Self is owned, we know that Self::Owned will be Self and can use this to hint type inference and simplify method signatures.

Object Safety§

This trait is not object safe.

Implementors§