[][src]Struct markings::Args

pub struct Args<'a>(_);

This allows you to be args for the Template::apply method

let args = Args::new()
                .with("key1", &false)
                .with("key2", &"message")
                .with("key3", &42)
                .build();

Methods

impl<'a> Args<'a>[src]

pub fn new() -> Self[src]

Create a new Args builder

pub fn with(self, key: &'a str, val: &'a dyn Display) -> Self[src]

Maps a key to a type that implements std::fmt::Display

pub fn build(self) -> Vec<(&'a str, &'a dyn Display)>[src]

Completes the builder, returning a Vec of Key : Values

Trait Implementations

impl<'a> Default for Args<'a>[src]

fn default() -> Self[src]

Create a new Args builder

Auto Trait Implementations

impl<'a> !Send for Args<'a>

impl<'a> !Sync for Args<'a>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]