Struct yew::ServerRenderer

source ·
pub struct ServerRenderer<COMP>where
    COMP: BaseComponent,
{ /* private fields */ }
Available on crate feature ssr only.
Expand description

A Yew Server-side Renderer.

This renderer spawns the rendering task to a Yew Runtime. and receives result when the rendering process has finished.

See yew::platform for more information.

Implementations§

Creates a ServerRenderer with default properties.

Creates a ServerRenderer with custom properties.

Note

The properties does not have to implement Send. However, the function to create properties needs to be Send.

Sets the runtime the ServerRenderer will run the rendering task with.

Sets whether an the rendered result is hydratable.

Defaults to true.

When this is sets to true, the rendered artifact will include additional information to assist with the hydration process.

Renders Yew Application.

Renders Yew Application to a String.

Renders Yew Application into a string Stream.

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.

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

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.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more