mirror of https://github.com/fafhrd91/actix-web
docs(web): document introspection feature (#3937)
This commit is contained in:
parent
11872101a3
commit
0ffaa78a32
|
|
@ -45,6 +45,10 @@ To enable faster release iterations, we mark some features as experimental.
|
||||||
These features are prefixed with `experimental` and a breaking change may happen at any release.
|
These features are prefixed with `experimental` and a breaking change may happen at any release.
|
||||||
Please use them in a production environment at your own risk.
|
Please use them in a production environment at your own risk.
|
||||||
|
|
||||||
|
- `experimental-introspection`: exposes route and method reporting helpers for local diagnostics
|
||||||
|
and tooling. See [`examples/introspection.rs`](examples/introspection.rs) and
|
||||||
|
[`examples/introspection_multi_servers.rs`](examples/introspection_multi_servers.rs).
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
- [Website & User Guide](https://actix.rs)
|
- [Website & User Guide](https://actix.rs)
|
||||||
|
|
|
||||||
|
|
@ -74,6 +74,9 @@
|
||||||
//! To enable faster release iterations, we mark some features as experimental.
|
//! To enable faster release iterations, we mark some features as experimental.
|
||||||
//! These features are prefixed with `experimental` and a breaking change may happen at any release.
|
//! These features are prefixed with `experimental` and a breaking change may happen at any release.
|
||||||
//! Please use them in a production environment at your own risk.
|
//! Please use them in a production environment at your own risk.
|
||||||
|
//!
|
||||||
|
//! - `experimental-introspection` - route and method reporting utilities for local diagnostics
|
||||||
|
//! and tooling. See `examples/introspection.rs` and `examples/introspection_multi_servers.rs`.
|
||||||
|
|
||||||
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
||||||
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue