pub struct Slide {
pub content: Result<Vec<Element>, Error>,
pub draft: bool,
}
Expand description
Each fully presentable slide from the entire slideshow. It is
a <div class=slide>
that will be formatted by CSS
to fill
the screen and respect the Javascript
controls.
Fields§
§content: Result<Vec<Element>, Error>
§draft: bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Slide
impl RefUnwindSafe for Slide
impl Send for Slide
impl Sync for Slide
impl Unpin for Slide
impl UnwindSafe for Slide
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more