pub trait IntoRender {
type Output;
// Required method
fn into_render(self) -> Self::Output;
}Expand description
Declares that this type can be converted into some other type, which can be rendered.
Required Associated Types§
Required Methods§
Sourcefn into_render(self) -> Self::Output
fn into_render(self) -> Self::Output
Consumes this value, transforming it into the renderable type.