Struct gdnative_sys::godot_instance_binding_functions[][src]

#[repr(C)]
pub struct godot_instance_binding_functions { pub alloc_instance_binding_data: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *const c_void, arg3: *mut godot_object) -> *mut c_void>, pub free_instance_binding_data: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *mut c_void)>, pub data: *mut c_void, pub free_func: Option<unsafe extern "C" fn(arg1: *mut c_void)>, }

Fields

Trait Implementations

impl Debug for godot_instance_binding_functions
[src]

Formats the value using the given formatter. Read more

impl Copy for godot_instance_binding_functions
[src]

impl Clone for godot_instance_binding_functions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for godot_instance_binding_functions
[src]

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

Auto Trait Implementations