pub struct ErrorPages<G: Html> { /* private fields */ }
Expand description

A representation of the views configured in an app for responding to errors.

On the web, errors occur frequently beyond app logic, usually in communication with servers, which will return HTTP status codes that indicate a success or failure. If a non-success error code is received, then Perseus will automatically render the appropriate error page, based on that status code. If no page has been explicitly constructed for that status code, then the fallback page will be used.

Each error page is a closure returning a [View] that takes four parameters: a reactive scope, the URL the user was on when the error occurred (which they’ll still be on, no route change occurs when rendering an error page), the status code itself, a String of the actual error message, and a Translator (which may not be available if the error occurred before translations data could be fetched and processed, in which case you should try to display language-agnostic information).

In development, you can get away with not defining any error pages for your app, as Perseus has a simple inbuilt default, though, when you try to go to production (e.g. with perseus deploy), you’ll receive an error message in building. In other words, you must define your own error pages for release mode.

Implementations

Creates a new definition of error pages with just a fallback page, which will be used when an error occurs whose status code has not been explicitly handled by some other error page.

Adds a new page for the given status code. If a page was already defined for the given code, it will be updated by replacement, through the mechanics of the internal HashMap. While there is no requirement for this to be a valid HTTP status code, there would be no point in defining a handler for a status code not on this list

Adds a new page for the given status code. If a page was already defined for the given code, it will be updated by the mechanics of the internal HashMap. This differs from .add_page() in that it takes an Rc, which can be useful for plugins.

Gets the View<G> to render.

Renders the error page to a string. This should then be hydrated on the client-side. No reactive scope is provided to this function, it uses an internal one.

Renders the error page to a string, using the given reactive scope. Note that this function is not used internally, and .render_to_string() should cover all uses. This is included for completeness.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.