pub enum SlideLayout {
CenteredTitle,
TitleAndContent,
TwoColumn,
SectionHeader,
Blank,
TitleOnly,
TitleAndBigContent,
}Expand description
Slide layout types
Variants§
CenteredTitle
Title slide (centered title + subtitle)
TitleAndContent
Title and content (bullets)
TwoColumn
Two columns of content
SectionHeader
Section divider (large title)
Blank
Blank slide
TitleOnly
Title only (no content area)
TitleAndBigContent
Title at top, content fills rest
Implementations§
Source§impl SlideLayout
impl SlideLayout
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SlideLayout
Source§impl Debug for SlideLayout
impl Debug for SlideLayout
impl Eq for SlideLayout
Source§impl PartialEq for SlideLayout
impl PartialEq for SlideLayout
Source§fn eq(&self, other: &SlideLayout) -> bool
fn eq(&self, other: &SlideLayout) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SlideLayout
Auto 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