pub struct Section {
pub name: String,
pub id: Option<String>,
pub slide_ids: Vec<u32>,
}Expand description
A section of the slide list (p14:section, PowerPoint 2010 and later).
Fields§
§name: String§id: Option<String>@id, a GUID.
slide_ids: Vec<u32>p14:sldId/@id values: slide ids from sldIdLst, in section order.
Trait Implementations§
impl Eq for Section
impl StructuralPartialEq for Section
Auto Trait Implementations§
impl Freeze for Section
impl RefUnwindSafe for Section
impl Send for Section
impl Sync for Section
impl Unpin for Section
impl UnsafeUnpin for Section
impl UnwindSafe for Section
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