#[repr(C)]pub struct ngx_open_file_s {
pub fd: i32,
pub name: ngx_str_t,
pub flush: Option<unsafe extern "C" fn(_: *mut ngx_open_file_s, _: *mut ngx_log_s)>,
pub data: *mut c_void,
}
Fields§
§fd: i32
§name: ngx_str_t
§flush: Option<unsafe extern "C" fn(_: *mut ngx_open_file_s, _: *mut ngx_log_s)>
§data: *mut c_void
Trait Implementations§
Source§impl Clone for ngx_open_file_s
impl Clone for ngx_open_file_s
Source§fn clone(&self) -> ngx_open_file_s
fn clone(&self) -> ngx_open_file_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_open_file_s
impl Debug for ngx_open_file_s
impl Copy for ngx_open_file_s
Auto Trait Implementations§
impl Freeze for ngx_open_file_s
impl RefUnwindSafe for ngx_open_file_s
impl !Send for ngx_open_file_s
impl !Sync for ngx_open_file_s
impl Unpin for ngx_open_file_s
impl UnwindSafe for ngx_open_file_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