macro_rules! const_definition {
    ( $(#[$attr:meta])* $vis:vis $ty:ty) => { ... };
}
Expand description

A macro to help in the creation of const definitions. Allows this syntax: const_definition!(#[attribute1] #[attributeN] visibility TypeName) This is syntactic sugar for calling the CompileConst::const_definition function.