Skip to main content

IntoRender

Trait IntoRender 

Source
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§

Source

type Output

The renderable type into which this type can be converted.

Required Methods§

Source

fn into_render(self) -> Self::Output

Consumes this value, transforming it into the renderable type.

Implementors§

Source§

impl<T> IntoRender for T
where T: Render,