Skip to main content
This is unreleased documentation for Yew Next version.
For up-to-date documentation, see the latest version on docs.rs.

AllPropsFor

Trait AllPropsFor 

Source
pub trait AllPropsFor<Builder, How> { }
Expand description

Trait to specify the requirement for Self to be a valid token signaling all props have been provided to the builder.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<Token, Builder: Buildable<Token>, How> AllPropsFor<Builder, How> for Token
where Builder::WrappedToken: HasAllProps<Builder::Output, How>,