Update Reflect.rs

This commit is contained in:
Werner
2021-12-23 12:02:30 -03:00
parent 19eebb4085
commit 72b48476d8

View File

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