actix-flash

Docs Crates.io

Flash message middleware for actix-web 2.0.

For actix-web 1.0 support, check out actix-web-flash.

Usage

```rust use actix_web::{web, App, HttpRequest, HttpResponse, HttpServer, Responder};

async fn showflash(flash: actixflash::Message) -> impl Responder { flash.into_inner() }

async fn setflash(req: HttpRequest) -> actixflash::Response { actixflash::Response::withredirect("This is the message".toowned(), "/show_flash") }

[actix_rt::main]

async fn main() -> std::io::Result<()> { HttpServer::new(move || { App::new() .wrap(actixflash::Flash::default()) .route("/showflash", web::get().to(showflash)) .route("/setflash", web::get().to(set_flash)) }) .bind("127.0.0.1:8080")? .run() .await } ```


Current version: 0.1.0

License: MIT/Apache-2.0