ecs_value_move

Function ecs_value_move 

Source
pub unsafe extern "C" fn ecs_value_move(
    world: *const ecs_world_t,
    type_: ecs_entity_t,
    dst: *mut c_void,
    src: *mut c_void,
) -> c_int
Expand description

Move value.

@param world The world. @param type The type of the value to move. @param dst Pointer to the storage to move to. @param src Pointer to the value to move. @return Zero if success, nonzero if failed.