Type Definition cpp_utils::Deleter [] [src]

type Deleter<T> = unsafe extern fn(this_ptr: *mut T);

Deleter function type.

This is usually a C++ function imported via FFI from a wrapper library. The body of this function should be "delete this_ptr;".