#[repr(C)]pub struct ngx_path_t {
    pub name: ngx_str_t,
    pub len: usize,
    pub level: [usize; 3],
    pub manager: Option<unsafe extern "C" fn(*mut c_void) -> usize>,
    pub purger: Option<unsafe extern "C" fn(*mut c_void) -> usize>,
    pub loader: Option<unsafe extern "C" fn(*mut c_void)>,
    pub data: *mut c_void,
    pub conf_file: *mut u8,
    pub line: usize,
}Fields§
§name: ngx_str_t§len: usize§level: [usize; 3]§manager: Option<unsafe extern "C" fn(*mut c_void) -> usize>§purger: Option<unsafe extern "C" fn(*mut c_void) -> usize>§loader: Option<unsafe extern "C" fn(*mut c_void)>§data: *mut c_void§conf_file: *mut u8§line: usizeTrait Implementations§
Source§impl Clone for ngx_path_t
 
impl Clone for ngx_path_t
Source§fn clone(&self) -> ngx_path_t
 
fn clone(&self) -> ngx_path_t
Returns a duplicate 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_path_t
 
impl Debug for ngx_path_t
impl Copy for ngx_path_t
Auto Trait Implementations§
impl Freeze for ngx_path_t
impl RefUnwindSafe for ngx_path_t
impl !Send for ngx_path_t
impl !Sync for ngx_path_t
impl Unpin for ngx_path_t
impl UnwindSafe for ngx_path_t
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