pub unsafe extern "C" fn aws_event_loop_remove_local_object(
    event_loop: *mut aws_event_loop,
    key: *mut c_void,
    removed_obj: *mut aws_event_loop_local_object
) -> c_int
Expand description

Removes an object from the event-loop’s data store. Key will be taken as the memory address of the memory pointed to by key. If removed_item is not null, the removed item will be moved to it if it exists. Otherwise, the default deallocation strategy will be used. This function is not thread safe and should be called inside the event-loop’s thread.