//! [`Debug`](core::fmt::Debug) implementation generation.
/// Generate [`Debug`](core::fmt::Debug) implementation from the type name.
///
/// Example:
/// ```
/// # use wetutil::impl_gen::debug::from_type_name;
/// struct MyType;
///
/// from_type_name!(MyType);
///
/// assert_eq!("MyType", format!("{:?}", MyType).as_str());
/// ```
pub use _core_fmt_debug__from_type_name as from_type_name;