pub trait Compose: Data {
// Required method
fn compose(cx: Scope<'_, Self>) -> impl Compose;
}Expand description
A composable function.
For a dynamically-typed composable, see DynCompose.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.