pub unsafe trait PropertyGetter<C, T>where
C: NativeClass,
T: ToVariant,{
// Required method
unsafe fn as_godot_function(self) -> godot_property_get_func;
}Required Methods§
unsafe fn as_godot_function(self) -> godot_property_get_func
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".