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