pub struct TextTemplateExpander<'s, 'b> { /* private fields */ }
Expand description

an expander you get from a template. You specify replacements on the expander then you ask it the text using expand

Implementations§

source§

impl<'s, 'b> TextTemplateExpander<'s, 'b>

source

pub fn set( &mut self, name: &str, value: &'s str ) -> &mut TextTemplateExpander<'s, 'b>

replace placeholders with name name with the given value, non interpreted (i.e. stars, backquotes, etc. don’t mess the styling defined by the template)

source

pub fn set_all(&mut self, value: &'s str) -> &mut TextTemplateExpander<'s, 'b>

replace all placeholders with the given value, non interpreted (i.e. stars, backquotes, etc. don’t mess the styling defined by the template). This can be used at start to have a “default” value.

source

pub fn set_md( &mut self, name: &'b str, value: &'s str ) -> &mut TextTemplateExpander<'s, 'b>

replace placeholders with name name with the given value, interpreted as markdown

source

pub fn set_lines( &mut self, name: &'b str, raw_lines: &'s str ) -> &mut TextTemplateExpander<'s, 'b>

replace a placeholder with several lines. This is mostly useful when the placeholder is a repeatable line (code, list item)

source

pub fn set_lines_md( &mut self, name: &'b str, md: &'s str ) -> &mut TextTemplateExpander<'s, 'b>

replace a placeholder with several lines interpreted as markdown

source

pub fn sub(&mut self, name: &'b str) -> &mut SubTemplateExpander<'s, 'b>

prepare expansion of a sub template and return a mutable reference to the object in which to set compound replacements

source

pub fn expand(self) -> Text<'s>

build a text by applying the replacements to the initial template

Trait Implementations§

source§

impl<'s, 'b> From<&'b TextTemplate<'s>> for TextTemplateExpander<'s, 'b>

source§

fn from(template: &'b TextTemplate<'s>) -> Self

Build a new expander for the template. The expander stores the additions done with set, set_md, set_lines or in the sub expanders.

Auto Trait Implementations§

§

impl<'s, 'b> RefUnwindSafe for TextTemplateExpander<'s, 'b>

§

impl<'s, 'b> Send for TextTemplateExpander<'s, 'b>

§

impl<'s, 'b> Sync for TextTemplateExpander<'s, 'b>

§

impl<'s, 'b> Unpin for TextTemplateExpander<'s, 'b>

§

impl<'s, 'b> UnwindSafe for TextTemplateExpander<'s, 'b>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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, U> TryFrom<U> for Twhere 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 Twhere 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.