Struct viewy::Page [−][src]
pub struct Page<'a> { /* fields omitted */ }Expand description
Represent a page and embed all the logic required by the service worker.
How to use
Example to get the full page
use viewy::RenderMode;
Page::new("Page name", layout::Default, {
View::new()
})
.compile(RenderMode::Complete)Implementations
pub fn new<C: 'static + Renderable>(
name: &str,
layout: &'a dyn Fn(Box<dyn Renderable>) -> Box<dyn Renderable>,
content: C
) -> Self
Trait Implementations
Auto Trait Implementations
impl<'a> !RefUnwindSafe for Page<'a>
impl<'a> !UnwindSafe for Page<'a>
Blanket Implementations
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: Component + Float,
D: AdaptFrom<S, Swp, Dwp, T>,
Swp: WhitePoint,
Dwp: WhitePoint,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: Component + Float,
D: AdaptFrom<S, Swp, Dwp, T>,
Swp: WhitePoint,
Dwp: WhitePoint,
Mutably borrows from an owned value. Read more
Convert into T with values clamped to the color defined bounds Read more
Convert into T. The resulting color might be invalid in its color space Read more
Convert into T, returning ok if the color is inside of its defined range,
otherwise an OutOfBounds error is returned which contains the unclamped color. Read more