1use crate::records::f_value::FValue; 2 3impl<T: Copy> FValue<T> { 4 pub fn get_global(&self) -> T { 5 unsafe { *self.value.get() } 6 } 7}