aboutsummaryrefslogtreecommitdiffstats
path: root/askama_rocket/src/lib.rs
blob: e2e84be224c1ab8f39a5da4010332181486c5741 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![forbid(unsafe_code)]
#![deny(elided_lifetimes_in_paths)]
#![deny(unreachable_pub)]

use std::io::Cursor;

pub use askama::*;
use rocket::http::{Header, Status};
pub use rocket::request::Request;
use rocket::response::Response;
pub use rocket::response::{Responder, Result};

pub fn respond<T: Template>(t: &T) -> Result<'static> {
    let rsp = t.render().map_err(|_| Status::InternalServerError)?;
    Response::build()
        .header(Header::new("content-type", T::MIME_TYPE))
        .sized_body(rsp.len(), Cursor::new(rsp))
        .ok()
}