system-extensions 0.0.4

A robust set of extensions for operating system operations.
Documentation
1
2
3
4
5
6
/**

    Allows the API to get the bits of bitflags.
*/
pub(crate) trait Bitflagable<T> {
    fn get_bits(self) -> T;
}