Struct nickel::Response [] [src]

pub struct Response<'a, D: 'a = (), T: 'static + Any = Fresh> {
    // some fields omitted
}

A container for the response

Methods

impl<'a, D> Response<'a, D, Fresh>

fn from_internal<'c, 'd>(response: HyperResponse<'c, Fresh>, templates: &'c TemplateCache, data: &'c D) -> Response<'c, D, Fresh>

fn status_mut(&mut self) -> &mut StatusCode

Get a mutable reference to the status.

fn headers_mut(&mut self) -> &mut Headers

Get a mutable reference to the Headers.

fn set<T: Modifier<Response<'a, D>>>(&mut self, attribute: T) -> &mut Response<'a, D>

Modify the response with the provided data.

Examples

extern crate hyper;
#[macro_use] extern crate nickel;

use nickel::{Nickel, HttpRouter, MediaType};
use nickel::status::StatusCode;
use hyper::header::Location;

fn main() {
    let mut server = Nickel::new();
    server.get("/a", middleware! { |_, mut res|
            // set the Status
        res.set(StatusCode::PermanentRedirect)
            // update a Header value
           .set(Location("http://nickel.rs".into()));

        ""
    });

    server.get("/b", middleware! { |_, mut res|
            // setting the content type
        res.set(MediaType::Json);

        "{'foo': 'bar'}"
    });

    // ...
}

fn send<T: Responder<D>>(self, data: T) -> MiddlewareResult<'a, D>

Writes a response

Examples

use nickel::{Request, Response, MiddlewareResult};

fn handler<'a, D>(_: &mut Request<D>, res: Response<'a, D>) -> MiddlewareResult<'a, D> {
    res.send("hello world")
}

fn send_file<P: AsRef<Path>>(self, path: P) -> MiddlewareResult<'a, D>

Writes a file to the output.

Examples

use nickel::{Request, Response, MiddlewareResult};
use std::path::Path;

fn handler<'a, D>(_: &mut Request<D>, res: Response<'a, D>) -> MiddlewareResult<'a, D> {
    let favicon = Path::new("/assets/favicon.ico");
    res.send_file(favicon)
}

fn error<T>(self, status: StatusCode, message: T) -> MiddlewareResult<'a, D> where T: Into<Cow<'static, str>>

Return an error with the appropriate status code for error handlers to provide output for.

fn set_header_fallback<F, H>(&mut self, f: F) where H: Header + HeaderFormat, F: FnOnce() -> H

Sets the header if not already set.

If the header is not set then f will be called. Renders the given template bound with the given data.

Examples

#[macro_use] extern crate nickel;
extern crate hyper;

use nickel::{Nickel, HttpRouter, MediaType};
use hyper::header::ContentType;

fn main() {
    let mut server = Nickel::new();
    server.get("/", middleware! { |_, mut res|
        res.set(MediaType::Html);
        res.set_header_fallback(|| {
            panic!("Should not get called");
            ContentType(MediaType::Txt.into())
        });

        "<h1>Hello World</h1>"
    });

    // ...
}

fn render<T, P>(self, path: P, data: &T) -> MiddlewareResult<'a, D> where T: Encodable, P: AsRef<str> + Into<String>

Renders the given template bound with the given data.

Examples

use std::collections::HashMap;
use nickel::{Request, Response, MiddlewareResult};

fn handler<'a, D>(_: &mut Request<D>, res: Response<'a, D>) -> MiddlewareResult<'a, D> {
    let mut data = HashMap::new();
    data.insert("name", "user");
    res.render("examples/assets/template.tpl", &data)
}

fn start(self) -> Result<Response<'a, D, Streaming>, NickelError<'a, D>>

fn server_data(&self) -> &D

fn on_send<F>(&mut self, f: F) where F: FnMut(&mut Response<'a, D, Fresh>) + 'static

impl<'a, 'b, D> Response<'a, D, Streaming>

fn bail<T>(self, message: T) -> MiddlewareResult<'a, D> where T: Into<Cow<'static, str>>

In the case of an unrecoverable error while a stream is already in progress, there is no standard way to signal to the client that an error has occurred. bail will drop the connection and log an error message.

fn end(self) -> Result<()>

Flushes all writing of a response to the client.

impl<'a, D, T: 'static + Any> Response<'a, D, T>

fn status(&self) -> StatusCode

The status of this response.

fn headers(&self) -> &Headers

The headers of this response.

fn data(&self) -> &D

Trait Implementations

impl<'a, 'b, D> Write for Response<'a, D, Streaming>

fn write(&mut self, buf: &[u8]) -> Result<usize>

fn flush(&mut self) -> Result<()>

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>

fn by_ref(&mut self) -> &mut Self

fn broadcast<W>(self, other: W) -> Broadcast<Self, W> where W: Write

impl<'a, D, T: 'static + Any> Extensible for Response<'a, D, T>

fn extensions(&self) -> &TypeMap

fn extensions_mut(&mut self) -> &mut TypeMap

impl<'a, D, T: 'static + Any> Pluggable for Response<'a, D, T>

fn get<P>(&mut self) -> Result<P::Value, P::Error> where Self: Extensible, P: Plugin<Self>, P::Value: Clone, P::Value: Any

fn get_ref<P>(&mut self) -> Result<&P::Value, P::Error> where P: Plugin<Self>, Self: Extensible, P::Value: Any

fn get_mut<P>(&mut self) -> Result<&mut P::Value, P::Error> where P: Plugin<Self>, Self: Extensible, P::Value: Any

fn compute<P>(&mut self) -> Result<P::Value, P::Error> where P: Plugin<Self>