mirror of
https://github.com/actix/actix-web.git
synced 2025-01-02 05:18:44 +00:00
update api doc
This commit is contained in:
parent
60386f1791
commit
e396c90c9e
1 changed files with 6 additions and 3 deletions
|
@ -34,6 +34,9 @@ pub(crate) trait DataFactoryResult {
|
|||
/// threads, a shared object should be used, e.g. `Arc`. Application
|
||||
/// data does not need to be `Send` or `Sync`.
|
||||
///
|
||||
/// If route data is not set for a handler, using `Data<T>` extractor would
|
||||
/// cause *Internal Server Error* response.
|
||||
///
|
||||
/// ```rust
|
||||
/// use std::cell::Cell;
|
||||
/// use actix_web::{web, App};
|
||||
|
@ -165,6 +168,9 @@ where
|
|||
/// configuration storage. Route data could be accessed in handler
|
||||
/// via `RouteData<T>` extractor.
|
||||
///
|
||||
/// If route data is not set for a handler, using `RouteData` extractor
|
||||
/// would cause *Internal Server Error* response.
|
||||
///
|
||||
/// ```rust
|
||||
/// # use std::cell::Cell;
|
||||
/// use actix_web::{web, App};
|
||||
|
@ -192,9 +198,6 @@ where
|
|||
/// ));
|
||||
/// }
|
||||
/// ```
|
||||
///
|
||||
/// If route data is not set for a handler, using `RouteData` extractor
|
||||
/// would cause `Internal Server error` response.
|
||||
pub struct RouteData<T>(Arc<T>);
|
||||
|
||||
impl<T> RouteData<T> {
|
||||
|
|
Loading…
Reference in a new issue