[][src]Struct mdbook_tera::StaticContextSource

pub struct StaticContextSource { /* fields omitted */ }

Static context source for the Tera preprocessor.

Implementations

impl StaticContextSource[src]

pub fn new(context: Context) -> Self[src]

Construct a context source given a tera context.

pub fn from_json_file<P>(path: P) -> Result<Self, Error> where
    P: AsRef<Path>, 
[src]

Construct a context source given a JSON path.

pub fn from_toml_file<P>(path: P) -> Result<Self, Error> where
    P: AsRef<Path>, 
[src]

Construct a context source given a TOML path.

Trait Implementations

impl Clone for StaticContextSource[src]

impl ContextSource for StaticContextSource[src]

impl Default for StaticContextSource[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, U> Into<U> for T where
    U: From<T>, 
[src]

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