[][src]Trait horrorshow::RenderBox

pub trait RenderBox { }

Something that can be rendered once out of a box.

This should only ever be used in the form Box<RenderBox> by casting Box<RenderOnce> to Box<RenderBox>. This trait has methods but I've hidden them because you should never call them directly. Instead, you should call the RenderOnce methods implemented on Box<RenderBox>.

Implementors

impl<T> RenderBox for T where
    T: RenderOnce
[src]

Loading content...