#[repr(C)]pub struct ngx_shm_zone_s {
pub data: *mut c_void,
pub shm: ngx_shm_t,
pub init: Option<unsafe extern "C" fn(_: *mut ngx_shm_zone_s, _: *mut c_void) -> isize>,
pub tag: *mut c_void,
pub sync: *mut c_void,
pub noreuse: usize,
}
Fields§
§data: *mut c_void
§shm: ngx_shm_t
§init: Option<unsafe extern "C" fn(_: *mut ngx_shm_zone_s, _: *mut c_void) -> isize>
§tag: *mut c_void
§sync: *mut c_void
§noreuse: usize
Trait Implementations§
Source§impl Clone for ngx_shm_zone_s
impl Clone for ngx_shm_zone_s
Source§fn clone(&self) -> ngx_shm_zone_s
fn clone(&self) -> ngx_shm_zone_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_shm_zone_s
impl Debug for ngx_shm_zone_s
impl Copy for ngx_shm_zone_s
Auto Trait Implementations§
impl Freeze for ngx_shm_zone_s
impl RefUnwindSafe for ngx_shm_zone_s
impl !Send for ngx_shm_zone_s
impl !Sync for ngx_shm_zone_s
impl Unpin for ngx_shm_zone_s
impl UnwindSafe for ngx_shm_zone_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