#[repr(C)]pub struct ngx_http_location_tree_node_s {
pub left: *mut ngx_http_location_tree_node_s,
pub right: *mut ngx_http_location_tree_node_s,
pub tree: *mut ngx_http_location_tree_node_s,
pub exact: *mut ngx_http_core_loc_conf_s,
pub inclusive: *mut ngx_http_core_loc_conf_s,
pub len: u16,
pub auto_redirect: u8,
pub name: [u8; 1],
}
Fields§
§left: *mut ngx_http_location_tree_node_s
§right: *mut ngx_http_location_tree_node_s
§tree: *mut ngx_http_location_tree_node_s
§exact: *mut ngx_http_core_loc_conf_s
§inclusive: *mut ngx_http_core_loc_conf_s
§len: u16
§auto_redirect: u8
§name: [u8; 1]
Trait Implementations§
Source§impl Clone for ngx_http_location_tree_node_s
impl Clone for ngx_http_location_tree_node_s
Source§fn clone(&self) -> ngx_http_location_tree_node_s
fn clone(&self) -> ngx_http_location_tree_node_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 moreimpl Copy for ngx_http_location_tree_node_s
Auto Trait Implementations§
impl Freeze for ngx_http_location_tree_node_s
impl RefUnwindSafe for ngx_http_location_tree_node_s
impl !Send for ngx_http_location_tree_node_s
impl !Sync for ngx_http_location_tree_node_s
impl Unpin for ngx_http_location_tree_node_s
impl UnwindSafe for ngx_http_location_tree_node_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