pub enum SlideLayoutType {
Show 13 variants
Blank,
Title,
TitleAndContent,
SectionHeader,
TwoContent,
TwoContentAndText,
TitleOnly,
ContentWithCaption,
PictureWithCaption,
VerticalTitleAndText,
VerticalText,
Custom,
Unknown,
}Expand description
Type of slide layout.
ECMA-376 Part 1, Section 19.7.15 (ST_SlideLayoutType).
Variants§
Blank
Blank slide.
Title
Title slide.
TitleAndContent
Title and content.
SectionHeader
Section header.
TwoContent
Two content.
TwoContentAndText
Two content and text.
TitleOnly
Title only.
ContentWithCaption
Content with caption.
PictureWithCaption
Picture with caption.
VerticalTitleAndText
Vertical title and text.
VerticalText
Vertical text.
Custom
Custom layout.
Unknown
Unknown layout type.
Trait Implementations§
Source§impl Clone for SlideLayoutType
impl Clone for SlideLayoutType
Source§fn clone(&self) -> SlideLayoutType
fn clone(&self) -> SlideLayoutType
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 moreSource§impl Debug for SlideLayoutType
impl Debug for SlideLayoutType
Source§impl Default for SlideLayoutType
impl Default for SlideLayoutType
Source§fn default() -> SlideLayoutType
fn default() -> SlideLayoutType
Returns the “default value” for a type. Read more
Source§impl PartialEq for SlideLayoutType
impl PartialEq for SlideLayoutType
impl Copy for SlideLayoutType
impl Eq for SlideLayoutType
impl StructuralPartialEq for SlideLayoutType
Auto Trait Implementations§
impl Freeze for SlideLayoutType
impl RefUnwindSafe for SlideLayoutType
impl Send for SlideLayoutType
impl Sync for SlideLayoutType
impl Unpin for SlideLayoutType
impl UnsafeUnpin for SlideLayoutType
impl UnwindSafe for SlideLayoutType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.