pub type ngx_pool_cleanup_t = ngx_pool_cleanup_s;
Aliased Type§
struct ngx_pool_cleanup_t {
pub handler: Option<unsafe extern "C" fn(*mut c_void)>,
pub data: *mut c_void,
pub next: *mut ngx_pool_cleanup_s,
}
Fields§
§handler: Option<unsafe extern "C" fn(*mut c_void)>
§data: *mut c_void
§next: *mut ngx_pool_cleanup_s
Trait Implementations
Source§impl Clone for ngx_pool_cleanup_s
impl Clone for ngx_pool_cleanup_s
Source§fn clone(&self) -> ngx_pool_cleanup_s
fn clone(&self) -> ngx_pool_cleanup_s
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more