[][src]Enum mdbook_cat_prep::render::RenderType

pub enum RenderType {
    Prepend(String),
    Append(String),
    Both(StringString),
    EntirePage(String),
}

typ daného renderu (a jeho obsah). Určuje chování, jakým bude zacházeno z obsahem článku

Variants

Prepend(String)

Přidá vyrenderovaný obsah na začátek

Append(String)

Přidá vyrenderovaný obsah na konec

Both(StringString)

Přidá něco na začátek a něco na konec

EntirePage(String)

Přepíše stárnku

Trait Implementations

impl Clone for RenderType[src]

impl Debug for RenderType[src]

impl Display for RenderType[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

je zapotřebí, aby nám vypisování RenderTypu v chybách nekazilo výstup. Tato implementace tedy usekne asociovaná data každé varianty a vypíše pouze její název.

Pro vypsání nejen názvu, ale i obsahu použijte debug formátování ("{:?}" nebo "{:#?}").

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> 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>,