Struct dioxus_web::WebConfig[][src]

pub struct WebConfig { /* fields omitted */ }
Expand description

Configuration for the WebSys renderer for the Dioxus VirtualDOM.

This struct helps configure the specifics of hydration and render destination for WebSys.

Example

fn main() {
    dioxus::web::launch(App, |cfg| cfg.hydrate(true).root_name("myroot"))
}

Implementations

Enable SSR hydration

This enables Dioxus to pick up work from a pre-renderd HTML file. Hydration will completely skip over any async work and suspended nodes.

Dioxus will load up all the elements with the dio_el data attribute into memory when the page is loaded.

Set the name of the element that Dioxus will use as the root.

This is akint to calling React.render() on the element with the specified name.

Set the name of the element that Dioxus will use as the root.

This is akint to calling React.render() on the element with the specified name.

Trait Implementations

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

Performs the conversion.

Performs the conversion.

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.