ngx 0.5.1

FFI bindings to NGINX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Collection types.
//!
//! This module provides common collection types, mostly implemented as wrappers over the
//! corresponding NGINX types.

#[cfg(feature = "alloc")]
pub use allocator_api2::{
    collections::{TryReserveError, TryReserveErrorKind},
    vec, // reexport both the module and the macro
    vec::Vec,
};

pub use queue::Queue;
pub use rbtree::RbTreeMap;

pub mod queue;
pub mod rbtree;