macro_tools 0.85.0

Tools for writing procedural macroses.
Documentation
//!
//! Typed parsing.
//!

/// Define a private namespace for all its items.
mod private 
{
  // use crate :: *;
}

#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use own :: *;

/// Own namespace of the module.
#[ allow( unused_imports ) ]
pub mod own 
{

  use super :: *;

  #[ doc( inline ) ]
  pub use orphan :: *;

  #[ doc( inline ) ]
  pub use private :: { };

  pub use syn :: { parse_quote, parse_quote as qt };
}

/// Orphan namespace of the module.
#[ allow( unused_imports ) ]
pub mod orphan 
{

  use super :: *;
  #[ doc( inline ) ]
  pub use exposed :: *;
}

/// Exposed namespace of the module.
#[ allow( unused_imports ) ]
pub mod exposed 
{

  use super :: *;
  pub use super ::super ::typed;

  // pub use super ::own as typ;

  #[ doc( inline ) ]
  pub use prelude :: *;
}

/// Prelude to use essentials: `use my_module ::prelude :: *`.
#[ allow( unused_imports ) ]
pub mod prelude 
{
  use super :: *;
}