[][src]Struct termimad::FmtText

pub struct FmtText<'k, 's> {
    pub skin: &'k MadSkin,
    pub lines: Vec<FmtLine<'s>>,
    pub width: Option<usize>,
}

a formatted text, implementing Display

use termimad::*;
let skin = MadSkin::default();
let my_markdown = "#title\n* item 1\n* item 2";
let text = FmtText::from(&skin, &my_markdown, Some(80));
println!("{}", &text);

Fields

skin: &'k MadSkinlines: Vec<FmtLine<'s>>width: Option<usize>

Implementations

impl<'k, 's> FmtText<'k, 's>[src]

pub fn from(
    skin: &'k MadSkin,
    src: &'s str,
    width: Option<usize>
) -> FmtText<'k, 's>
[src]

build a displayable text for the specified width and skin

This can be called directly or using one of the skin helper method.

pub fn from_text(
    skin: &'k MadSkin,
    text: Text<'s>,
    width: Option<usize>
) -> FmtText<'k, 's>
[src]

build a fmt_text from a minimad text

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<'k, 's> UnwindSafe for FmtText<'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.