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