pub struct QuickPptx { /* private fields */ }Expand description
Quick presentation builder for simple use cases
Implementations§
Source§impl QuickPptx
impl QuickPptx
Sourcepub fn slide(self, title: &str, bullets: &[&str]) -> Self
pub fn slide(self, title: &str, bullets: &[&str]) -> Self
Add a slide with title and bullet points
Sourcepub fn title_slide(self, title: &str) -> Self
pub fn title_slide(self, title: &str) -> Self
Add a slide with just a title
Sourcepub fn content_slide(self, slide: SlideContent) -> Self
pub fn content_slide(self, slide: SlideContent) -> Self
Add a slide with title and custom content
Sourcepub fn shapes_slide(self, title: &str, shapes: Vec<Shape>) -> Self
pub fn shapes_slide(self, title: &str, shapes: Vec<Shape>) -> Self
Add a slide with shapes
Auto Trait Implementations§
impl Freeze for QuickPptx
impl RefUnwindSafe for QuickPptx
impl Send for QuickPptx
impl Sync for QuickPptx
impl Unpin for QuickPptx
impl UnsafeUnpin for QuickPptx
impl UnwindSafe for QuickPptx
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