[][src]Struct nickel::FaviconHandler

pub struct FaviconHandler { /* fields omitted */ }

Methods

impl FaviconHandler
[src]

pub fn new<P: AsRef<Path>>(icon_path: P) -> FaviconHandler
[src]

Create a new middleware to serve an /favicon.ico file from an in-memory cache. The file is only read from disk once when the server starts.

Examples

use nickel::{Nickel, FaviconHandler};
let mut server = Nickel::new();

server.utilize(FaviconHandler::new("/path/to/ico/file"));

pub fn is_favicon_request<D>(req: &Request<D>) -> bool
[src]

pub fn handle_request<'a, D>(
    &self,
    req: &Request<D>,
    res: Response<'a, D>
) -> MiddlewareResult<'a, D>
[src]

pub fn send_favicon<'a, D>(
    &self,
    req: &Request<D>,
    res: Response<'a, D>
) -> MiddlewareResult<'a, D>
[src]

Trait Implementations

impl<D> Middleware<D> for FaviconHandler
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> UnsafeAny for T where
    T: Any