pub unsafe trait InstructionSet: Copy {
    fn detect() -> Option<Self>;
    unsafe fn new_unchecked() -> Self;
}

Required Methods

Implementors