[][src]Struct markings::Args

pub struct Args<'a>(_);

This is an easy way to build an argument mapping for the template application method

The key must be a &str while the value can be any std::fmt::Display trait object

note The keys are unique, duplicates will be replaced by the last one

let args = Args::new()
    .with("key1", &false)
    .with("key2", &"message")
    .with("key3", &41)
    .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

Auto Trait Implementations

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

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

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

impl<'a> Unpin for Args<'a>

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

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