#[repr(C)]pub struct ngx_pool_s {
pub d: ngx_pool_data_t,
pub max: usize,
pub current: *mut ngx_pool_s,
pub chain: *mut ngx_chain_s,
pub large: *mut ngx_pool_large_s,
pub cleanup: *mut ngx_pool_cleanup_s,
pub log: *mut ngx_log_s,
}
Fields§
§d: ngx_pool_data_t
§max: usize
§current: *mut ngx_pool_s
§chain: *mut ngx_chain_s
§large: *mut ngx_pool_large_s
§cleanup: *mut ngx_pool_cleanup_s
§log: *mut ngx_log_s
Trait Implementations§
Source§impl Clone for ngx_pool_s
impl Clone for ngx_pool_s
Source§fn clone(&self) -> ngx_pool_s
fn clone(&self) -> ngx_pool_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 moreSource§impl Debug for ngx_pool_s
impl Debug for ngx_pool_s
impl Copy for ngx_pool_s
Auto Trait Implementations§
impl Freeze for ngx_pool_s
impl RefUnwindSafe for ngx_pool_s
impl !Send for ngx_pool_s
impl !Sync for ngx_pool_s
impl Unpin for ngx_pool_s
impl UnwindSafe for ngx_pool_s
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more