macroific_core 3.0.1

Shared functionality for macroific & macroific_macro
Documentation
//! Various tokenisable elements

#[cfg(feature = "generic-impl")]
pub use generic_impl::GenericImpl;

#[cfg(feature = "module-prefix")]
pub use module_prefix::ModulePrefix;

#[cfg(feature = "attributed")]
pub use attributed::{Attributed, AttributedInner};

#[cfg(feature = "generic-impl")]
pub mod generic_impl;

#[cfg(feature = "module-prefix")]
pub mod module_prefix;

#[cfg(feature = "attributed")]
mod attributed;