Struct hyper_static_server::BuilderConfiguration[][src]

pub struct BuilderConfiguration {
    pub sources: Option<PathBuf>,
    pub assets_sources: Option<PathBuf>,
    pub assets_route_base: Option<PathBuf>,
    pub css_sources: Option<PathBuf>,
    pub css_route_base: Option<PathBuf>,
    pub js_sources: Option<PathBuf>,
    pub js_route_base: Option<PathBuf>,
    pub images_route_base: Option<PathBuf>,
    pub icons_route_base: Option<PathBuf>,
    pub favicons_route_base: Option<PathBuf>,
    pub fonts_route_base: Option<PathBuf>,
    pub askama_sources: Option<PathBuf>,
    pub outputs: PathBuf,
    pub generated: PathBuf,
}

Fields

sources: Option<PathBuf>assets_sources: Option<PathBuf>assets_route_base: Option<PathBuf>css_sources: Option<PathBuf>css_route_base: Option<PathBuf>js_sources: Option<PathBuf>js_route_base: Option<PathBuf>images_route_base: Option<PathBuf>icons_route_base: Option<PathBuf>favicons_route_base: Option<PathBuf>fonts_route_base: Option<PathBuf>askama_sources: Option<PathBuf>outputs: PathBufgenerated: PathBuf

Implementations

impl BuilderConfiguration[src]

Trait Implementations

impl Clone for BuilderConfiguration[src]

impl Debug for BuilderConfiguration[src]

impl Default for BuilderConfiguration[src]

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<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,