pub struct SlideLayout {
pub name: Option<String>,
pub layout_type: SlideLayoutType,
pub match_name: bool,
pub show_master_shapes: bool,
/* private fields */
}Expand description
A slide layout in the presentation.
Slide layouts define the arrangement of content placeholders. ECMA-376 Part 1, Section 19.3.1.39 (sldLayout).
Fields§
§name: Option<String>Name of the layout (e.g., “Title Slide”, “Title and Content”).
layout_type: SlideLayoutTypeLayout type.
match_name: boolWhether to match slide names.
show_master_shapes: boolWhether to show master shapes.
Implementations§
Trait Implementations§
Source§impl Clone for SlideLayout
impl Clone for SlideLayout
Source§fn clone(&self) -> SlideLayout
fn clone(&self) -> SlideLayout
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SlideLayout
impl RefUnwindSafe for SlideLayout
impl Send for SlideLayout
impl Sync for SlideLayout
impl Unpin for SlideLayout
impl UnsafeUnpin for SlideLayout
impl UnwindSafe for SlideLayout
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