pub struct SlideContent {
pub kind: SlideKind,
pub name: Option<String>,
pub show: bool,
pub shapes: Vec<Shape>,
}Expand description
The parsed content of one slide-family part.
Fields§
§kind: SlideKind§name: Option<String>cSld/@name.
show: boolsld/@show; hidden slides are false.
shapes: Vec<Shape>Shapes in z-order, which is also document and reading order.
Implementations§
Trait Implementations§
Source§impl Clone for SlideContent
impl Clone for SlideContent
Source§fn clone(&self) -> SlideContent
fn clone(&self) -> SlideContent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SlideContent
impl Debug for SlideContent
impl Eq for SlideContent
Source§impl PartialEq for SlideContent
impl PartialEq for SlideContent
impl StructuralPartialEq for SlideContent
Auto Trait Implementations§
impl Freeze for SlideContent
impl RefUnwindSafe for SlideContent
impl Send for SlideContent
impl Sync for SlideContent
impl Unpin for SlideContent
impl UnsafeUnpin for SlideContent
impl UnwindSafe for SlideContent
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