Trait gdnative_core::init::PropertySetter [−][src]
pub unsafe trait PropertySetter<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: NativeClass, T: ToVariant> PropertySetter<C, T> for ()[src]
impl<C: NativeClass, T: ToVariant> PropertySetter<C, T> for ()unsafe fn as_godot_function(self) -> godot_property_set_func[src]
unsafe fn as_godot_function(self) -> godot_property_set_funcImplementors
impl<F, C, T> PropertySetter<C, T> for F where
C: NativeClass,
T: ToVariant,
F: Fn(&mut C, T),