mirror of
https://github.com/guilhermewerner/reflection
synced 2025-06-15 13:14:19 +00:00
6 lines
118 B
Rust
6 lines
118 B
Rust
use std::any::Any;
|
|
|
|
pub unsafe trait Reflect: Any + Send + Sync + 'static {
|
|
fn TypeName(&self) -> &'static str;
|
|
}
|