devela/code/any/reexports.rs
1// devela::code::any::reexports
2//
3//! Reexported items from `core`.
4//
5
6use crate::reexport;
7
8reexport! { rust: core::any,
9 doc: "A trait to emulate dynamic typing.",
10 Any
11}
12reexport! { rust: core::any,
13 doc: "Represents a globally unique identifier for a type.",
14 TypeId
15}
16reexport! { rust: core::any,
17 doc: "Returns the name of a type as a string slice.",
18 @type_name as any_type_name
19}