pptx 0.1.0

A Rust library for creating and manipulating PowerPoint (.pptx) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Bullet format types for paragraph bullets.

/// Specifies the bullet format for a paragraph.
#[non_exhaustive]
#[derive(Debug, Clone, PartialEq)]
pub enum BulletFormat {
    /// A character bullet (e.g. `'•'`, `'–'`).
    Character(char),
    /// An auto-numbered bullet (e.g. `"arabicPeriod"`, `"alphaLcParenR"`).
    AutoNumbered(String),
    /// A picture bullet via relationship ID (`<a:buBlip>`).
    Picture(String),
    /// No bullet (explicitly suppressed).
    None,
}