1 2 3 4 5 6
#[macro_export] macro_rules! offset_of { ($ty:ty, $field:ident) => { unsafe { &(*(0 as *const $ty)).$field as *const _ as usize } }; }