[][src]Macro cluStaticData::static_data

macro_rules! static_data {
    [
		$(#[$($mt:tt)*])* pub $(($($v_t:tt)*))* static ref $name:ident: $t: ty = $a:expr; $($tt:tt)*
	] => { ... };
    [
		$(#[$($mt:tt)*])* static ref $name:ident: $t: ty = $a:expr; $($tt:tt)*
	] => { ... };
    [
		$(#[$($mt:tt)*])* pub $(($($v_t:tt)*))* static ref +runtime $name:ident: $t: ty = $a:expr; $($tt:tt)*
	] => { ... };
    [
		$(#[$($mt:tt)*])* static ref +runtime $name:ident: $t: ty = $a:expr; $($tt:tt)*
	] => { ... };
    () => { ... };
}