cxx/
type_id.rs

1/// For use in impls of the `ExternType` trait. See [`ExternType`].
2///
3/// [`ExternType`]: crate::ExternType
4#[macro_export]
5macro_rules! type_id {
6    ($($path:tt)*) => {
7        $crate::private::type_id! { $crate $($path)* }
8    };
9}