[][src]Struct gotham::handler::assets::FileHandler

pub struct FileHandler { /* fields omitted */ }

Represents a handler for a single file.

Implementations

impl FileHandler[src]

pub fn new<P>(path: P) -> FileHandler where
    FileOptions: From<P>, 
[src]

Create a new FileHandler for the given path.

Trait Implementations

impl Clone for FileHandler[src]

impl Handler for FileHandler[src]

impl NewHandler for FileHandler[src]

type Instance = Self

The type of Handler created by the NewHandler.

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<F, R> Handler for F where
    F: FnOnce(State) -> R + Send,
    R: IntoHandlerFuture
[src]

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

impl<F, H> NewHandler for F where
    F: Fn() -> Result<H, Error> + Send + Sync + RefUnwindSafe,
    H: Handler + Send
[src]

type Instance = H

The type of Handler created by the NewHandler.

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,