[][src]Struct spandex::document::counters::Counters

pub struct Counters {
    pub counters: Vec<usize>,
}

The struct that manages the counters for the document.

Fields

counters: Vec<usize>

The counters.

Methods

impl Counters[src]

pub fn new() -> Counters[src]

Creates a new empty counters.

pub fn increment(&mut self, counter_id: usize) -> usize[src]

Increases the corresponding counter and returns it if it is correct.

The counters of the subsections will be reinitialized.

Example

let mut counters = Counters::new();
counters.increment(0);
assert_eq!(counters.counter(0), 1);
assert_eq!(counters.counter(1), 0);
assert_eq!(counters.counter(2), 0);
counters.increment(1);
assert_eq!(counters.counter(1), 1);
counters.increment(1);
assert_eq!(counters.counter(1), 2);
counters.increment(0);
assert_eq!(counters.counter(0), 2);
assert_eq!(counters.counter(1), 0);
println!("{}", counters);

pub fn counter(&self, counter_id: usize) -> usize[src]

Returns a specific value of a counter.

Trait Implementations

impl Clone for Counters[src]

impl Default for Counters[src]

impl Display for Counters[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

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

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

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