Trait gdnative_visual_script::common::init::PropertySetter [−]
pub unsafe trait PropertySetter<C, T> where
C: NativeClass,
T: ToVariant, { unsafe fn as_godot_function(self) -> godot_property_set_func; }
Required Methods
unsafe fn as_godot_function(self) -> godot_property_set_func
Implementations on Foreign Types
impl<C, T> PropertySetter<C, T> for () where
C: NativeClass,
T: ToVariant,
impl<C, T> PropertySetter<C, T> for () where
C: NativeClass,
T: ToVariant,
unsafe fn as_godot_function(self) -> godot_property_set_func
unsafe fn as_godot_function(self) -> godot_property_set_func
Implementors
impl<F, C, T> PropertySetter<C, T> for F where
C: NativeClass,
F: Fn(&mut C, T),
T: ToVariant,