Struct termimad::FmtText

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

a formatted text, implementing Display.

The text is wrapped for the width given at build, which means the rendering height is the number of lines.

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 MadSkin§lines: Vec<FmtLine<'s>>§width: Option<usize>

Implementations§

source§

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

source

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

build a displayable text for the specified width and skin

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

source

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

build a text as raw (with no markdown interpretation)

source

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

build a fmt_text from a minimad text

source

pub fn set_rendering_width(&mut self, width: usize)

set the width to render the text to.

It’s preferable to set it no smaller than content_width and no wider than the terminal’s width.

If you want the text to be wrapped, pass a width on construction (ie in FmtText::from or FmtText::from_text) instead. The main purpose of this function is to optimize the rendering of a text (or several ones) to a content width, for example to have centered titles centered not based on the terminal’s width but on the content width

source

pub fn content_width(&self) -> usize

Trait Implementations§

source§

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

source§

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

Formats the value using the given formatter. Read more
source§

impl Display for FmtText<'_, '_>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

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

§

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§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.