1 2 3 4 5 6 7
use crate::Ins; impl Ins { pub fn discriminant(&self) -> u16 { unsafe { *(self as *const Self as *const u16) } } }