blob: bd2b4ea61eaed6f1c196c6c275ab77a3a5659b63 [file] [log] [blame]
/// For use in impls of the `ExternType` trait. See [`ExternType`].
///
/// [`ExternType`]: trait.ExternType.html
#[macro_export]
macro_rules! type_id {
($($path:tt)*) => {
$crate::private::type_id! { $crate $($path)* }
};
}