pub enum Slide {
TextSlide(TextSlide),
ImageSlide(ImageSlide),
EmptySlide,
}
Expand description
There are three types of slides. TextSlide
, ImageSlide
, and EmptySlide
.
Empty slides are meant to be blank, with no text or images.
Variants§
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