pub trait ArgumentReflection: Sized {
// Required method
fn type_info(&self, runtime: &Runtime) -> Type;
}Expand description
A type to emulate dynamic typing across compilation units for statically typed values.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.