1 2 3 4 5 6 7 8 9 10 11 12 13
/// Support for `i31ref` disabled at compile time because the `gc` cargo feature /// was not enabled. pub enum I31 {} impl I31 { pub fn get_u32(&self) -> u32 { match *self {} } pub fn get_i32(&self) -> i32 { match *self {} } }