#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/logo_v3_trans_square_icon_small_v2.ico" ) ]
#![ doc( html_root_url = "https://docs.rs/proc_macro_tools/latest/proc_macro_tools/" ) ]
#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]
pub mod attr;
pub mod container_kind;
pub mod diagnostics;
pub mod generic_analyze;
pub mod generics;
pub mod name;
pub mod quantifier;
pub mod typ;
#[ cfg( feature = "enabled" ) ]
pub mod dependency
{
pub use ::syn;
pub use ::quote;
pub use ::proc_macro2;
pub use ::interval_adapter;
}
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use protected::*;
pub mod protected
{
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use super::
{
orphan::*,
attr::orphan::*,
container_kind::orphan::*,
generic_analyze::orphan::*,
generics::orphan::*,
diagnostics::orphan::*,
name::orphan::*,
quantifier::orphan::*,
typ::orphan::*,
};
}
pub mod orphan
{
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use super::exposed::*;
}
pub mod exposed
{
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use quote::
{
format_ident,
quote,
quote_spanned,
};
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use super::
{
prelude::*,
attr::exposed::*,
container_kind::exposed::*,
generic_analyze::exposed::*,
generics::exposed::*,
diagnostics::exposed::*,
name::exposed::*,
quantifier::exposed::*,
typ::exposed::*,
};
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use super::quantifier::
{
Pair,
Many,
};
}
pub mod prelude
{
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use ::interval_adapter::prelude::*;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use ::syn;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use ::proc_macro2;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use ::quote;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use ::quote::quote as qt;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use ::syn::parse_quote as parse_qt;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use ::syn::spanned::Spanned;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use syn::
{
parse::ParseStream,
Token,
braced,
bracketed,
custom_keyword,
custom_punctuation,
parenthesized,
parse_macro_input,
parse_quote,
parse_quote_spanned,
};
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use super::
{
attr::prelude::*,
container_kind::prelude::*,
generic_analyze::prelude::*,
generics::prelude::*,
diagnostics::prelude::*,
name::prelude::*,
quantifier::prelude::*,
typ::prelude::*,
};
}