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

A Yew Server-side Renderer that renders on the current thread.

Note

This renderer does not spawn its own runtime and can only be used when:

  • wasm-bindgen-futures is selected as the backend of Yew runtime.
  • running within a Runtime.
  • running within a tokio LocalSet.

Implementations§

Creates a LocalServerRenderer with default properties.

Creates a LocalServerRenderer with custom properties.

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