macro_rules! dictionary_type {
(
$( #[$attrs:meta] )*
pub type $name:ident {
$($attr:ident: $value_type:ty => $js_name:ident)*
}
) => { ... };
}Expand description
Define a dictionary type.
macro_rules! dictionary_type {
(
$( #[$attrs:meta] )*
pub type $name:ident {
$($attr:ident: $value_type:ty => $js_name:ident)*
}
) => { ... };
}Define a dictionary type.