pub unsafe extern "C" fn aws_event_loop_put_local_object(
    event_loop: *mut aws_event_loop,
    obj: *mut aws_event_loop_local_object
) -> c_int
Expand description

Puts an item object the event-loop’s data store. Key will be taken as the memory address of the memory pointed to by key. The lifetime of item must live until remove or a put item overrides it. This function is not thread safe and should be called inside the event-loop’s thread.