[][src]Struct termimad::FmtInline

pub struct FmtInline<'k, 's> {
    pub skin: &'k MadSkin,
    pub composite: FmtComposite<'s>,
}

A directly printable markdown snippet, complete with the reference to a skin so that it can implement the Display trait.

Use this when you don't have a text but just part of a line

Fields

skin: &'k MadSkincomposite: FmtComposite<'s>

Trait Implementations

impl<'_, '_> Display for FmtInline<'_, '_>[src]

Auto Trait Implementations

impl<'k, 's> RefUnwindSafe for FmtInline<'k, 's>

impl<'k, 's> Send for FmtInline<'k, 's>

impl<'k, 's> Sync for FmtInline<'k, 's>

impl<'k, 's> Unpin for FmtInline<'k, 's>

impl<'k, 's> UnwindSafe for FmtInline<'k, 's>

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