pub struct ContextProvider<T: Clone + PartialEq + 'static> { /* private fields */ }
Expand description

The context provider component.

Every child (direct or indirect) of this component may access the context value. In order to consume contexts, Scope::context method is used, In function components the use_context hook is used.

Trait Implementations§

Messages are used to make Components dynamic and interactive. Simple Component’s can declare their Message type to be (). Complex Component’s commonly use an enum to declare multiple Message types. Read more
The Component’s properties. Read more
Called when component is created.
Called when properties passed to the component change Read more
Components define their visual layout using a JSX-style syntax through the use of the html! procedural macro. The full guide to using the macro can be found in Yew’s documentation. Read more
Called when a new message is sent to the component via its scope. Read more
The rendered method is called after each time a Component is rendered but before the browser updates the page. Read more
Prepares the state during server side rendering. Read more
Called right before a Component is unmounted.
Formats the value using the given formatter. 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