[][src]Struct actix_web::web::Data

pub struct Data<T>(_);

Application data.

Application data is an arbitrary data attached to the app. Application data is available to all routes and could be added during application configuration process with App::data() method.

Applicatin data could be accessed by using Data<T> extractor where T is data type.

Note: http server accepts an application factory rather than an application instance. Http server constructs an application instance for each thread, thus application data must be constructed multiple times. If you want to share data between different 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.

use std::cell::Cell;
use actix_web::{web, App};

struct MyData {
    counter: Cell<usize>,
}

/// Use `Data<T>` extractor to access data in handler.
fn index(data: web::Data<MyData>) {
    data.counter.set(data.counter.get() + 1);
}

fn main() {
    let app = App::new()
        // Store `MyData` in application storage.
        .data(MyData{ counter: Cell::new(0) })
        .service(
            web::resource("/index.html").route(
                web::get().to(index)));
}

Methods

impl<T> Data<T>[src]

pub fn get_ref(&self) -> &T[src]

Get referecnce to inner app data.

Trait Implementations

impl<T: 'static, P> FromRequest<P> for Data<T>[src]

type Error = Error

The associated error which can be returned.

type Future = Result<Self, Error>

Future that resolves to a Self

fn extract(req: &HttpRequest) -> Self::Future[src]

Convert request to a Self Read more

impl<T> Clone for Data<T>[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> Deref for Data<T>[src]

type Target = T

The resulting type after dereferencing.

Auto Trait Implementations

impl<T> Send for Data<T> where
    T: Send + Sync

impl<T> Sync for Data<T> where
    T: Send + Sync

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T