pub struct Template { /* private fields */ }
Expand description

Responder that renders a dynamic template.

Template serves as a proxy type for rendering a template and does not contain the rendered template itself. The template is lazily rendered, at response time. To render a template greedily, use Template::show().

See the crate root for usage details.

Implementations§

source§

impl Template

source

pub fn fairing() -> impl Fairing

Returns a fairing that initializes and maintains templating state.

This fairing, or the one returned by Template::custom(), must be attached to any Rocket instance that wishes to render templates. Failure to attach this fairing will result in a “Uninitialized template context: missing fairing.” error message when a template is attempted to be rendered.

If you wish to customize the internal templating engines, use Template::custom() instead.

Example

To attach this fairing, simple call attach on the application’s Rocket instance with Template::fairing():

extern crate rocket;
extern crate rocket_dyn_templates;

use rocket_dyn_templates::Template;

fn main() {
    rocket::build()
        // ...
        .attach(Template::fairing())
        // ...
}
source

pub fn custom<F>(f: F) -> impl Fairingwhere F: Fn(&mut Engines) + Send + Sync + 'static,

Returns a fairing that initializes and maintains templating state.

Unlike Template::fairing(), this method allows you to configure templating engines via the function f. Note that only the enabled templating engines will be accessible from the Engines type.

This method does not allow the function f to fail. If f is fallible, use Template::try_custom() instead.

Example
extern crate rocket;
extern crate rocket_dyn_templates;

use rocket_dyn_templates::Template;

fn main() {
    rocket::build()
        // ...
        .attach(Template::custom(|engines| {
            // engines.handlebars.register_helper ...
        }))
        // ...
}
source

pub fn try_custom<F>(f: F) -> impl Fairingwhere F: Fn(&mut Engines) -> Result<(), Box<dyn Error>> + Send + Sync + 'static,

Returns a fairing that initializes and maintains templating state.

This variant of Template::custom() allows a fallible f. If f returns an error during initialization, it will cancel the launch. If f returns an error during template reloading (in debug mode), then the newly-reloaded templates are discarded.

Example
extern crate rocket;
extern crate rocket_dyn_templates;

use rocket_dyn_templates::Template;

fn main() {
    rocket::build()
        // ...
        .attach(Template::try_custom(|engines| {
            // engines.handlebars.register_helper ...
            Ok(())
        }))
        // ...
}
source

pub fn render<S, C>(name: S, context: C) -> Templatewhere S: Into<Cow<'static, str>>, C: Serialize,

Render the template named name with the context context. The context is typically created using the context! macro, but it can be of any type that implements Serialize, such as HashMap or a custom struct.

To render a template directly into a string, use Metadata::render().

Examples

Using the context macro:

use rocket_dyn_templates::{Template, context};

let template = Template::render("index", context! {
    foo: "Hello, world!",
});

Using a HashMap as the context:

use std::collections::HashMap;
use rocket_dyn_templates::Template;

// Create a `context` from a `HashMap`.
let mut context = HashMap::new();
context.insert("foo", "Hello, world!");

let template = Template::render("index", context);
source

pub fn show<S, C>(rocket: &Rocket<Orbit>, name: S, context: C) -> Option<String>where S: Into<Cow<'static, str>>, C: Serialize,

Render the template named name with the context context into a String. This method should not be used in any running Rocket application. This method should only be used during testing to validate Template responses. For other uses, use render() instead.

The context can be of any type that implements Serialize. This is typically a HashMap or a custom struct.

Returns Some if the template could be rendered. Otherwise, returns None. If rendering fails, error output is printed to the console. None is also returned if a Template fairing has not been attached.

Example
use std::collections::HashMap;

use rocket_dyn_templates::Template;
use rocket::local::blocking::Client;

fn main() {
    let rocket = rocket::build().attach(Template::fairing());
    let client = Client::untracked(rocket).expect("valid rocket");

    // Create a `context`. Here, just an empty `HashMap`.
    let mut context = HashMap::new();
    let template = Template::show(client.rocket(), "index", context);
}

Trait Implementations§

source§

impl Debug for Template

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'r> Responder<'r, 'static> for Template

Returns a response with the Content-Type derived from the template’s extension and a fixed-size body containing the rendered template. If rendering fails, an Err of Status::InternalServerError is returned.

source§

fn respond_to(self, req: &'r Request<'_>) -> Result<'static>

Returns Ok if a Response could be generated successfully. Otherwise, returns an Err with a failing Status. Read more
source§

impl Sentinel for Template

source§

fn abort(rocket: &Rocket<Ignite>) -> bool

Returns true if launch should be aborted and false otherwise.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T> AsTaggedExplicit<'a> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self>

§

impl<'a, T> AsTaggedImplicit<'a> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self>

source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> IntoCollection<T> for T

§

fn into_collection<A>(self) -> SmallVec<A>where A: Array<Item = T>,

Converts self into a collection.
§

fn mapped<U, F, A>(self, f: F) -> SmallVec<A>where F: FnMut(T) -> U, A: Array<Item = U>,

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more