pub unsafe trait InstructionSet: Copy {
    fn is_enabled() -> bool;
    unsafe fn new() -> Self;

    fn detect() -> Option<Self> { ... }
}

Required Methods

Provided Methods

Implementors