Struct gdnative_sys::godot_property_set_func[][src]

#[repr(C)]
pub struct godot_property_set_func { pub set_func: Option<unsafe extern "C" fn(arg1: *mut godot_object, arg2: *mut c_void, arg3: *mut c_void, arg4: *mut godot_variant)>, pub method_data: *mut c_void, pub free_func: Option<unsafe extern "C" fn(arg1: *mut c_void)>, }

Fields

Trait Implementations

impl Debug for godot_property_set_func
[src]

Formats the value using the given formatter. Read more

impl Copy for godot_property_set_func
[src]

impl Clone for godot_property_set_func
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for godot_property_set_func
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations