/// Generate a debug implementation from the type name.
///
/// Examples:
/// ```
/// # use wetutil::impl_gen::debug::from_type_name;
/// struct MyType;
///
/// from_type_name!(MyType);
///
/// assert_eq!("MyType", format!("{:?}", MyType).as_str());
/// ```
pub use from_type_name;