[][src]Struct mdbook::book::SectionNumber

pub struct SectionNumber(pub Vec<u32>);

A section number like "1.2.3", basically just a newtype'd Vec<u32> with a pretty Display impl.

Trait Implementations

impl Clone for SectionNumber[src]

impl Debug for SectionNumber[src]

impl Default for SectionNumber[src]

impl Deref for SectionNumber[src]

type Target = Vec<u32>

The resulting type after dereferencing.

impl DerefMut for SectionNumber[src]

impl<'de> Deserialize<'de> for SectionNumber[src]

impl Display for SectionNumber[src]

impl FromIterator<u32> for SectionNumber[src]

impl PartialEq<SectionNumber> for SectionNumber[src]

impl Serialize for SectionNumber[src]

impl StructuralPartialEq for SectionNumber[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,