[][src]Struct nginx::ngx_http_v2_node_s

#[repr(C)]pub struct ngx_http_v2_node_s {
    pub id: ngx_uint_t,
    pub index: *mut ngx_http_v2_node_t,
    pub parent: *mut ngx_http_v2_node_t,
    pub queue: ngx_queue_t,
    pub children: ngx_queue_t,
    pub reuse: ngx_queue_t,
    pub rank: ngx_uint_t,
    pub weight: ngx_uint_t,
    pub rel_weight: f64,
    pub stream: *mut ngx_http_v2_stream_t,
}

Fields

id: ngx_uint_tindex: *mut ngx_http_v2_node_tparent: *mut ngx_http_v2_node_tqueue: ngx_queue_tchildren: ngx_queue_treuse: ngx_queue_trank: ngx_uint_tweight: ngx_uint_trel_weight: f64stream: *mut ngx_http_v2_stream_t

Trait Implementations

impl Clone for ngx_http_v2_node_s[src]

impl Copy for ngx_http_v2_node_s[src]

impl Debug for ngx_http_v2_node_s[src]

Auto Trait Implementations

impl RefUnwindSafe for ngx_http_v2_node_s

impl !Send for ngx_http_v2_node_s

impl !Sync for ngx_http_v2_node_s

impl Unpin for ngx_http_v2_node_s

impl UnwindSafe for ngx_http_v2_node_s

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.