Type Alias ngx_http_v2_node_t

Source
pub type ngx_http_v2_node_t = ngx_http_v2_node_s;

Aliased Type§

struct ngx_http_v2_node_t {
    pub id: usize,
    pub index: *mut ngx_http_v2_node_s,
    pub parent: *mut ngx_http_v2_node_s,
    pub queue: ngx_queue_s,
    pub children: ngx_queue_s,
    pub reuse: ngx_queue_s,
    pub rank: usize,
    pub weight: usize,
    pub rel_weight: f64,
    pub stream: *mut ngx_http_v2_stream_s,
}

Fields§

§id: usize§index: *mut ngx_http_v2_node_s§parent: *mut ngx_http_v2_node_s§queue: ngx_queue_s§children: ngx_queue_s§reuse: ngx_queue_s§rank: usize§weight: usize§rel_weight: f64§stream: *mut ngx_http_v2_stream_s

Trait Implementations

Source§

impl Clone for ngx_http_v2_node_s

Source§

fn clone(&self) -> ngx_http_v2_node_s

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ngx_http_v2_node_s

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Copy for ngx_http_v2_node_s