[][src]Enum native_windows_gui::ParaNumbering

pub enum ParaNumbering {
    None,
    Bullet,
    Arabic,
    LcLetter,
    LcRoman,
    UcLetter,
    UcRoman,
    Seq(char),
}

Options used for bulleted or numbered paragraphs.

Variants

None

No paragraph numbering or bullets.

Bullet

Insert a bullet at the beginning of each selected paragraph.

Arabic

Use Arabic numbers (0, 1, 2, and so on).

LcLetter

Use lowercase letters (a, b, c, and so on).

LcRoman

Use lowercase Roman letters (i, ii, iii, and so on).

UcLetter

Use uppercase letters (A, B, C, and so on).

UcRoman

Use uppercase Roman letters (I, II, III, and so on).

Seq(char)

Uses a sequence of characters beginning with the Unicode character specified

Trait Implementations

impl Clone for ParaNumbering[src]

impl Copy for ParaNumbering[src]

impl Debug for ParaNumbering[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.