std_detect 0.1.5

`std::detect` - Rust's standard library run-time CPU feature detection.
1
2
3
4
5
6
7
8
9
//! Other operating systems

use crate::detect::Feature;

/// Performs run-time feature detection.
#[inline]
pub fn check_for(_x: Feature) -> bool {
    false
}