declare_volatile_struct

Macro declare_volatile_struct 

Source
macro_rules! declare_volatile_struct {
    (
        $(#[$sattr:meta])*
        pub struct $sname: ident {
            $(
                $(#[$fattr:meta])*
                $([$($tags: ident)*])? $fname: ident: $ftype: ty,
            )*
        }
    ) => { ... };
}