pub trait IntoView {
type Output: View;
// Required method
fn into_view(self, env: &Environment) -> Self::Output;
}Expand description
A trait for converting values into views.
This trait allows different types to be converted into View implementations, enabling more flexible composition of UI elements.