pub struct LegacySlide {
pub id: u32,
pub hidden: bool,
pub name: Option<String>,
pub content: SlideContent,
}Expand description
One slide as parsed from its container.
Fields§
§id: u32§name: Option<String>§content: SlideContentAuto Trait Implementations§
impl Freeze for LegacySlide
impl RefUnwindSafe for LegacySlide
impl Send for LegacySlide
impl Sync for LegacySlide
impl Unpin for LegacySlide
impl UnsafeUnpin for LegacySlide
impl UnwindSafe for LegacySlide
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