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