1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
macro_rules! impl_raw_accessors( ($(($t:ty, $raw:ty)),+) => ( $( impl $t { #[inline] pub const unsafe fn raw(&self) -> $raw { self.raw } } )+ ) ); macro_rules! impl_raw_constructor( ($(($t:ty, $te:ident ($($r:ident:$rt:ty),+))),+) => ( $( impl $t { #[inline] pub const unsafe fn from_ll($($r:$rt),+) -> $t { $te { $($r: $r),+ } } } )+ ) );