Files
reflection/Source/Reflect.rs
2021-12-23 12:02:30 -03:00

6 lines
118 B
Rust

use std::any::Any;
pub unsafe trait Reflect: Any + Send + Sync + 'static {
fn TypeName(&self) -> &'static str;
}