Enum crowbook::Number [] [src]

pub enum Number {
    Hidden,
    Unnumbered,
    Default,
    Specified(i32),
}

Numbering for a given chapter

Variants

chapter's title is hidden

chapter is not numbered

chapter follows books numbering, number is given automatically

chapter number set to specified number

Trait Implementations

impl Debug for Number
[src]

Formats the value using the given formatter.

impl PartialEq for Number
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Number
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Number
[src]